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