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