LibC: add defines in stdio.h

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

View File

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