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