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