7 lines
92 B
C
7 lines
92 B
C
/* function perrno:integer; extern; */
|
|
|
|
extern int errno;
|
|
|
|
int perrno() {
|
|
return(errno);
|
|
}
|