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