4.1cBSD/usr/src/usr.lib/libU77/ierrno_.c

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

/*
char id_ierrno[] = "@(#)ierrno_.c	1.1";
 *
 * return the current value of the system error register
 *
 * calling sequence:
 *	ier = ierrno()
 * where:
 *	ier will receive the current value of errno
 */

extern int errno;

long ierrno_()
{
	return((long)errno);
}