From 624dbb2f2efbeb9eca0a87e77fe7d19ce5e4ef36 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Tue, 19 Aug 2014 16:08:39 +0800 Subject: [PATCH] include: Add printf.h --- include/printf.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 include/printf.h diff --git a/include/printf.h b/include/printf.h new file mode 100644 index 0000000..40d5335 --- /dev/null +++ b/include/printf.h @@ -0,0 +1,6 @@ +#ifndef __PRINTF_H__ +#define __PRINTF_H__ + +int printf(const char *fmt, ...); + +#endif /* __PRINTF_H__ */