home *** CD-ROM | disk | FTP | other *** search
- /* STDIO.H
-
- */
-
- #define NULL (void *) 0
- #define EOF (-1)
-
- int putchar(int);
- int getchar(void);
- int sprintf(char *,const char *,...);
- int printf(const char *,...);
-
- #ifdef _STDARG_INCLUDED /* Note: #include "stdarg.h" BEFORE "stdio.h" */
- int _formatted_write (const char *format,
- void outputf(char, void *),
- void *secret_pointer,
- va_list ap);
- #endif
-