Syncboot/libc/include/stdio.h

19 lines
270 B
C
Raw Normal View History

2019-04-03 21:46:58 +00:00
#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*);
2019-04-01 01:18:48 +00:00
#endif