freebsd-src/lib/libcom_err/internal.h
Garrett Wollman af4d8ead38 The Common Error Description Library, developed by MIT SIPB and used by
a number of (ex-)Athena programs.  Breaking my own rules for importing
somewhat, as this code does not appear to be actively maintained by anyone
(not that it really needs it).
1995-01-14 22:23:41 +00:00

19 lines
301 B
C

/*
* 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