ref: 990dcf7fb41e4b4d050ffb6080ccf794922dd88d
dir: /src/libc/string/strerror.c/
#include <errno.h> #include <string.h> #undef strerror char * strerror(int errnum) { if (errnum > EUNKNOWN || errnum <= 0) errnum = EUNKNOWN; return _sys_errlist[errnum]; }