2.9BSD/usr/src/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
 */

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

extern int errno;

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