Add the implementation of tfs
[thunix.git] / include / stdio.h
blobe8ca5c532e3e8e4322c11c747a5bf321d00ebf7a
1 #ifndef STDIO_H
2 #define STDIO_H
4 #include <stdarg.h>
7 #ifndef NULL
8 #define NULL ((void *) 0)
9 #endif
11 extern int vsprintf (char *, const char *, va_list);
12 extern int sprintk (char *, const char *, ...);
13 extern int printk(const char *, ...);
15 #endif /* stdio.h */