cynix

x86 UNIX-like OS
git clone git://git.2f30.org/cynix
Log | Files | Refs | README | LICENSE

stdio.h (280B)


      1 #ifndef __STDIO_H__
      2 #define __STDIO_H__
      3 
      4 #include <stdarg.h>
      5 
      6 #define NULL ((void *)0)
      7 #define BUFSIZ 8192
      8 
      9 extern int putchar(int c);
     10 extern int printf(const char *fmt, ...);
     11 extern int puts(const char *s);
     12 extern int vsprintf(char *buf, const char *fmt, va_list args);
     13 
     14 #endif
     15