panthema / 2006 / SDIOS06 / sdios06 / lib / libc / errno.cc (Download File)
#include <config.h>

#include <errno.h>

extern "C" {
	
	int errno = 0;

	char* strerror(int errnum)
	{
		return "NO description for this error yet (sorry)";
	}
	
}