2.9BSD/usr/src/lib/libU77/getuid_.c

Compare this file to the similar file:
Show the results in this format:

/*
char id_getuid[] = "@(#)getuid_.c	1.1";
 *
 * get user id
 *
 * calling sequence:
 *	integer getuid, uid
 *	uid = getuid()
 * where:
 *	uid will be the real user id
 */

#include	"../libI77/fiodefs.h"

ftnint getuid_()
{
	return((ftnint)getuid());
}