36cb297b57
This reverts commit 56f77cf071
.
oops
14 lines
171 B
C
Executable file
14 lines
171 B
C
Executable file
#ifndef _STDIO_H
|
|
#define _STDIO_H
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#define EOF (-1)
|
|
|
|
int printf(const char * __restrict, ...);
|
|
|
|
int putchar(int);
|
|
|
|
int puts(const char *);
|
|
|
|
#endif
|