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