mlibc: errno.h: declare errno without extern.

* mlibc/include/errno.h: drop extern.  Fixes tcc compile.
This commit is contained in:
Jan Nieuwenhuizen 2017-11-11 13:42:42 +01:00
parent 5100b3c039
commit 6a16258f78
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
#undef __MES_ERRNO_H
#include_next <errno.h>
#else // ! (__GNUC__ && POSIX)
extern int errno;
int errno;
#endif // ! (__GNUC__ && POSIX)
#endif // __MES_ERRNO_H