diff options
Diffstat (limited to 'lib/libcom_err/internal.h')
-rw-r--r-- | lib/libcom_err/internal.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/libcom_err/internal.h b/lib/libcom_err/internal.h new file mode 100644 index 0000000..880fe76 --- /dev/null +++ b/lib/libcom_err/internal.h @@ -0,0 +1,18 @@ +/* + * internal include file for com_err package + */ +#include "mit-sipb-copyright.h" +#ifndef __STDC__ +#undef const +#define const +#endif + +extern int errno; +extern char const * const sys_errlist[]; +extern /* const */ int sys_nerr; + +#ifdef __STDC__ +void perror (const char *); +#else +int perror (); +#endif |