ack/lang/pc/libpc/perrno.c

8 lines
92 B
C
Raw Normal View History

1984-07-20 10:44:57 +00:00
/* function perrno:integer; extern; */
extern int errno;
int perrno() {
return(errno);
}