Files
Upsilon/liba/include/stdio.h
Felix Raimundo eed53079ca Add EOF to stdio.h
Change-Id: I94e2b93bbfe50fd8daaf0ad5f8c2447c0d6fbef4
2016-03-18 18:55:25 +01:00

11 lines
118 B
C

#ifndef LIBA_STDIO_H
#define LIBA_STDIO_H
#define stdin 0
#define stdout 0
#define EOF 0
typedef void FILE;
#endif