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