Files
30dayMakeOS/tolset/z_tools/haribote/stdio.h
2014-09-04 15:36:35 +08:00

25 lines
367 B
C

/* copyright(C) 2003 H.Kawai (under KL-01). */
#if (!defined(STDIO_H))
#define STDIO_H 1
#if (defined(__cplusplus))
extern "C" {
#endif
#if (!defined(NULL))
#define NULL ((void *) 0)
#endif
#include <stdarg.h>
int sprintf(char *s, const char *format, ...);
int vsprintf(char *s, const char *format, va_list arg);
#if (defined(__cplusplus))
}
#endif
#endif