shithub: npe

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

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

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

	return "???";
}