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