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