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