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