home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume17 / com_err / part01 / internal.h < prev    next >
C/C++ Source or Header  |  1991-02-25  |  290b  |  17 lines

  1. /*
  2.  * internal include file for com_err package
  3.  */
  4. #include "mit-sipb-copyright.h"
  5. #ifndef __STDC__
  6. #undef const
  7. #define const
  8. #endif
  9.  
  10. extern int errno;
  11. extern char const * const sys_errlist[];
  12. extern const int sys_nerr;
  13.  
  14. #if !defined(__STDC__) || defined(__HIGHC__)
  15. int perror ();
  16. #endif
  17.