LibC: Define std{in,out,err,dbg} with their actual names

This commit is contained in:
Bananymous 2025-06-06 11:56:39 +03:00
parent e92f039a17
commit 6beaafcf11
1 changed files with 4 additions and 4 deletions

View File

@ -60,10 +60,10 @@ struct ScopeLock
static FILE s_files[FOPEN_MAX];
FILE* stdin = &s_files[0];
FILE* stdout = &s_files[1];
FILE* stderr = &s_files[2];
FILE* stddbg = &s_files[3];
FILE* __stdin = &s_files[0];
FILE* __stdout = &s_files[1];
FILE* __stderr = &s_files[2];
FILE* __stddbg = &s_files[3];
static void init_closed_file(FILE* file)
{