getuid.c   [plain text]


/* Very simple getuid() for systems that don't have one.  */
int
getuid()
{
	return 42;
}