fix some errno related stuff, "make all" works again

This commit is contained in:
mrdudz
2022-08-28 22:09:44 +02:00
parent 2dabb65ee0
commit 54aff47513
7 changed files with 25 additions and 12 deletions

View File

@@ -42,7 +42,7 @@
void __fastcall__ perror (const char* msg)
{
/* Fetch the message that corresponds to errno */
const char* errormsg = strerror (_errno);
const char* errormsg = strerror (__errno);
/* Different output depending on msg */
if (msg) {