home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
unix
/
unixlib36d
/
src
/
c
/
errno
< prev
next >
Wrap
Text File
|
1994-03-08
|
291b
|
20 lines
#ifdef ARCH
#ifdef __STDC__
static char sccs_id[] = "@(#) errno.c 1.3 " __DATE__ " HJR";
#else
static char sccs_id[] = "@(#) errno.c 1.3 26/9/90 HJR";
#endif
/* errno.c (c) Copyright 1990 H.Rogers */
#include <errno.h>
#ifdef __STDC__
volatile int errno;
#else
int errno;
#endif
#endif