mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-04-28 04:30:30 +08:00
25 lines
367 B
C
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
|