1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* $OpenBSD: com_err.h,v 1.1 1996/11/11 04:55:03 downsj Exp $ */
/*-
* Header file for common error description library.
*
* Copyright 1988, Student Information Processing Board of the
* Massachusetts Institute of Technology.
*
* For copyright and distribution info, see the documentation supplied
* with this package.
*/
#ifndef __COM_ERR_H
#define __COM_ERR_H
#include <stdarg.h>
/* ANSI C -- use prototypes etc */
void com_err __P((const char *, long, const char *, ...));
char const *error_message __P((long));
void (*com_err_hook) __P((const char *, long, const char *, va_list));
void (*set_com_err_hook __P((void (*) (const char *, long, const char *, va_list))))
__P((const char *, long, const char *, va_list));
void (*reset_com_err_hook __P((void)))
__P((const char *, long, const char *, va_list));
#endif /* ! defined(__COM_ERR_H) */
|