blob: 1e8d62dff73f7828ae3fc03d7f7b0533fae105f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* internal include file for com_err package
*/
#include "mit-sipb-copyright.h"
#include <errno.h>
#include "k5-platform.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
|