shithub: npe

ref: a9006b7d8db146f51c4adc2f356d80dc0211ad81
dir: /libnpe/strerror.c/

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

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

	return "???";
}