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