1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:37:34 +00:00

LibC: #define errno errno

This makes the binutils port build again, after the TLS changes.
This commit is contained in:
Andreas Kling 2019-09-08 14:20:13 +02:00
parent 23eafdb8d6
commit 31ba7ba2cc

View file

@ -19,4 +19,6 @@ extern const char* sys_errlist[];
extern int sys_nerr;
extern __thread int errno;
#define errno errno
__END_DECLS