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