shithub: npe

ref: 227d52323d8f98c897a9269e9d4947cf1a28f4bd
dir: /libnpe/strerror.c/

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

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

	return "???";
}