diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 14:52:25 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 14:52:25 +0000 |
commit | f59dd2dc3ec11e14fbea988c3d82127fbc9f89ae (patch) | |
tree | 17a433e6227a99a23927df83e369c2fd81b8aab9 /target/linux/ar71xx/image/lzma-loader/src/printf.h | |
parent | 051fa16811ee7cad5332e4a0263d0de844a8a567 (diff) | |
download | upstream-f59dd2dc3ec11e14fbea988c3d82127fbc9f89ae.tar.gz upstream-f59dd2dc3ec11e14fbea988c3d82127fbc9f89ae.tar.bz2 upstream-f59dd2dc3ec11e14fbea988c3d82127fbc9f89ae.zip |
ar71xx: add lzma loader
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29443 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/image/lzma-loader/src/printf.h')
-rw-r--r-- | target/linux/ar71xx/image/lzma-loader/src/printf.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/ar71xx/image/lzma-loader/src/printf.h b/target/linux/ar71xx/image/lzma-loader/src/printf.h new file mode 100644 index 0000000000..9b1c1df232 --- /dev/null +++ b/target/linux/ar71xx/image/lzma-loader/src/printf.h @@ -0,0 +1,18 @@ +/* + * Copyright (C) 2001 MontaVista Software Inc. + * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + */ + +#ifndef _printf_h_ +#define _printf_h_ + +#include <stdarg.h> +void printf(char *fmt, ...); + +#endif /* _printf_h_ */ |