blob: 21eee15aaa4a6a9a8fe4dfd04de2e16512ea0a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* pserror.h
* Copyright (C) Angus J. C. Duggan 1991-1995
* See file LICENSE for details.
*
* Header file for external functions in pserror.c
*/
#include <stdarg.h>
/* message flags */
#define MESSAGE_NL 1 /* Newline before message if necessary */
#define MESSAGE_PROGRAM 2 /* announce program name */
#define MESSAGE_EXIT 4 /* do not return */
/* message types */
#define FATAL (MESSAGE_EXIT|MESSAGE_PROGRAM|MESSAGE_NL)
#define WARN (MESSAGE_NL|MESSAGE_PROGRAM)
#define LOG 0
extern void message(int flags, char *format, ...) ;
|