orca/cstdlib/include/stdio.h

26 lines
387 B
C
Raw Normal View History

2023-06-29 01:43:52 +00:00
#ifndef _STDIO_H
#define _STDIO_H
#ifdef __cplusplus
extern "C" {
#endif
struct _IO_FILE { char __x; };
typedef struct _IO_FILE FILE;
2023-06-24 02:32:54 +00:00
extern FILE *const stdin;
extern FILE *const stdout;
extern FILE *const stderr;
#define stdin (stdin)
#define stdout (stdout)
#define stderr (stderr)
int fprintf(FILE *__restrict, const char *__restrict, ...);
2023-06-29 01:43:52 +00:00
#ifdef __cplusplus
}
#endif
#endif