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