add MSL_C/stdio.h (#317)

This commit is contained in:
Jcw87
2023-04-21 02:02:03 -07:00
committed by GitHub
parent 472340e2d6
commit f5fc527d39
34 changed files with 59 additions and 35 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef MSL_STDIO_H_
#define MSL_STDIO_H_
#include "MSL_C/MSL_Common/Src/FILE_POS.h"
#include "MSL_C/MSL_Common/Src/char_io.h"
#include "MSL_C/MSL_Common/Src/direct_io.h"
#include "MSL_C/MSL_Common/Src/file_io.h"
#include "MSL_C/MSL_Common/Src/printf.h"
#define stdin (&__files._stdin)
#define stdout (&__files._stdout)
#define stderr (&__files._stderr)
#endif