tinycc/bootstrap/libc/include/stdio.h

18 lines
266 B
C
Raw Normal View History

2020-05-22 23:35:11 +00:00
#include <stddef.h>
#ifndef __STDIO_H__
#define __STDIO_H__
// Type definitions
typedef void FILE;
// Values
extern FILE* stdout;
extern FILE* stderr;
extern FILE* stdin;
// Basic file handlers
extern FILE* fopen(const char* filename, const char* mode);
#endif