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