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