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