summaryrefslogtreecommitdiff
path: root/h/zephyr/zsyslog.h
diff options
context:
space:
mode:
Diffstat (limited to 'h/zephyr/zsyslog.h')
-rw-r--r--h/zephyr/zsyslog.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/h/zephyr/zsyslog.h b/h/zephyr/zsyslog.h
deleted file mode 100644
index 1b09c4a..0000000
--- a/h/zephyr/zsyslog.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* This file is part of the Project Athena Zephyr Notification System.
- * It contains definitions to deal with old 4.2-style syslog functions.
- *
- * Created by: John T. Kohl
- *
- * $Source$
- * $Author$
- *
- * Copyright (c) 1987,1988 by the Massachusetts Institute of Technology.
- * For copying and distribution information, see the file
- * "mit-copyright.h".
- */
-/* $Header$ */
-
-#include <syslog.h>
-#ifndef LOG_AUTH
-/* Probably a 4.2-type syslog */
-#define OPENLOG(str, opts, facility) openlog(str, opts)
-#else
-/* A decent syslog */
-#define OPENLOG(str, opts, facility) openlog(str, opts, facility)
-#endif