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