blob: 438f2e5c04022de3155a383841a7bb7c4c5b3425 (
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, const char *format, ...) ;
|