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