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