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