mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
f9380b3e05
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
13 lines
277 B
C
13 lines
277 B
C
#ifndef MSL_STDIO_H_
|
|
#define MSL_STDIO_H_
|
|
|
|
#include "MSL_C/MSL_Common/Src/char_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
|