19 lines
270 B
C
Executable File
19 lines
270 B
C
Executable File
#ifndef _STDIO_H
|
|
#define _STDIO_H 1
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#define EOF (-1)
|
|
|
|
struct __sFile {
|
|
int unused;
|
|
};
|
|
|
|
typedef struct __sFile FILE;
|
|
|
|
#define stderr (_impure_ptr->_stderr)
|
|
|
|
int printf(const char* __restrict, ...);
|
|
int putchar(int);
|
|
int puts(const char*);
|
|
#endif |