ref: 6212e95d0985e27dc4161dbf1fcee82d3843f31d dir: /libnpe/strerror.c/
#include "string.h" #include "errno.h" char * strerror(int e) { switch(e){ case ENOENT: return "ENOENT"; } return "???"; }