shithub: npe

ref: 130289e73d40b0769065b2ecffd2e635125c7783
dir: /libnpe/strerror.c/

View raw version
#include "string.h"
#include "errno.h"

char *
strerror(int e)
{
	switch(e){
	case ENOENT: return "ENOENT";
	}

	return "???";
}