summaryrefslogtreecommitdiff
path: root/usr/src/head/syslog.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/head/syslog.h')
-rw-r--r--usr/src/head/syslog.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/usr/src/head/syslog.h b/usr/src/head/syslog.h
index 52ddee0695..6cfa94f7e3 100644
--- a/usr/src/head/syslog.h
+++ b/usr/src/head/syslog.h
@@ -19,6 +19,9 @@
*
* CDDL HEADER END
*/
+/*
+ * Copyright 2014 Garrett D'Amore <garrett@damore.org>
+ */
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
@@ -26,8 +29,6 @@
#ifndef _SYSLOG_H
#define _SYSLOG_H
-#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.1 */
-
#include <sys/feature_tests.h>
#include <sys/syslog.h>
#include <sys/va_list.h>
@@ -36,8 +37,6 @@
extern "C" {
#endif
-#ifdef __STDC__
-
void openlog(const char *, int, int);
void syslog(int, const char *, ...);
void closelog(void);
@@ -46,18 +45,6 @@ int setlogmask(int);
void vsyslog(int, const char *, __va_list);
#endif /* !defined(_XPG4_2) || defined(__EXTENSIONS__) */
-#else /* __STDC__ */
-
-void openlog();
-void syslog();
-void closelog();
-int setlogmask();
-#if !defined(_XPG4_2) || defined(__EXTENSIONS__)
-void vsyslog();
-#endif /* !defined(_XPG4_2) || defined(__EXTENSIONS__) */
-
-#endif /* __STDC__ */
-
#ifdef __cplusplus
}
#endif