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