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