Home | History | Annotate | Download | only in et
      1 /*
      2  * internal include file for com_err package
      3  */
      4 #include "mit-sipb-copyright.h"
      5 
      6 #include <errno.h>
      7 
      8 #ifndef SYS_ERRLIST_DECLARED
      9 extern char const * const sys_errlist[];
     10 extern const int sys_nerr;
     11 #endif
     12 
     13 #if defined(__STDC__) && !defined(HDR_HAS_PERROR) && !defined(WIN32)
     14 void perror (const char *);
     15 #endif
     16