summaryrefslogtreecommitdiff
path: root/Build/source/utils/psutils/pserror.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/psutils/pserror.h')
-rw-r--r--Build/source/utils/psutils/pserror.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Build/source/utils/psutils/pserror.h b/Build/source/utils/psutils/pserror.h
new file mode 100644
index 00000000000..21eee15aaa4
--- /dev/null
+++ b/Build/source/utils/psutils/pserror.h
@@ -0,0 +1,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, ...) ;