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