shithub: npe

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

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

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

	return "???";
}