OSDN Git Service

projects clean up 1
[pinoc/pinoc.git] / test / Standart_startup / lib / include / stdio.h
diff --git a/test/Standart_startup/lib/include/stdio.h b/test/Standart_startup/lib/include/stdio.h
new file mode 100644 (file)
index 0000000..bc12e9a
--- /dev/null
@@ -0,0 +1,35 @@
+/* 
+ * stdio.h
+*/
+
+#ifndef _STDIO_H_
+#define _STDIO_H_
+
+#include "stdarg.h"
+#include "stddef.h"    /*For size_t*/
+
+#ifndef NULL
+#define NULL    ((void *) 0)
+#endif
+
+#ifndef EOF
+#define EOF     (-1)
+#endif
+
+int  puts(const char *);
+int  putchar(int);
+int  getchar(void);
+
+int  printf(const char *,...);
+int  sprintf(char *,const char *,...);
+
+int  vsprintf(char *,const char *,va_list);
+int  vprintf(const char *,va_list);
+int  scanf(const char *,...);
+int  sscanf(const char *, const char *,...);
+char *gets(char *);
+
+#endif /* _STDIO_H_ */
+
+
+