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