stdio.h: add std{in,out,err} macros; regex.h: add REG_MINIMAL macro

This commit is contained in:
Connor-GH
2026-01-23 09:41:19 -06:00
parent 599d60e404
commit 6356142c79
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -9,5 +9,9 @@ typedef struct FILE FILE;
// A typedef doesn't suffice, because libgmp uses this definition to check if
// STDIO was loaded.
#define FILE FILE
// Likewise, stdin, stdout, and stderr are expected to be macros.
#define stdin stdin
#define stdout stdout
#define stderr stderr
#endif /* _BITS_STDIO_H */