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