LibC: add defines in stdio.h

This commit is contained in:
Bananymous 2023-05-11 01:39:16 +03:00
parent 5188efcc57
commit c989a01913
1 changed files with 7 additions and 3 deletions

View File

@ -11,9 +11,13 @@
#define stdout stdout #define stdout stdout
#define stderr stderr #define stderr stderr
#define SEEK_CUR 0 #define SEEK_CUR 1
#define SEEK_END 1 #define SEEK_END 2
#define SEEK_SET 2 #define SEEK_SET 3
#define _IOFBF 1
#define _IOLBF 2
#define _IONBF 3
#define EXIT_FAILURE 1 #define EXIT_FAILURE 1
#define EXIT_SUCCESS 0 #define EXIT_SUCCESS 0