As of C11, errno must be a macro, so make it one.

This commit is contained in:
Stephen Heumann 2021-03-11 21:16:41 -06:00
parent 9cd2807bc8
commit dae27757d3
1 changed files with 1 additions and 0 deletions

View File

@ -27,5 +27,6 @@
#define ENOSPC 11 /* the file is too large */
extern int errno;
#define errno errno
#endif