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