about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorFrédéric Bérat <fberat@redhat.com>2023-04-26 11:59:08 +0200
committerFrédéric Bérat <fberat@redhat.com>2023-07-05 16:59:48 +0200
commitba745eff4621d599be3d14d32d490debaef5a117 (patch)
tree5203d8de5db737d33efc7eba0188c3b6a540fb75 /include
parentd9a99272d21d9602ec7e134169c115aa27d956b6 (diff)
downloadglibc-ba745eff4621d599be3d14d32d490debaef5a117.tar.gz
glibc-ba745eff4621d599be3d14d32d490debaef5a117.tar.xz
glibc-ba745eff4621d599be3d14d32d490debaef5a117.zip
misc/bits/syslog.h: Clearly separate declaration from definition
This allows to include bits/syslog-decl.h in include/sys/syslog.h and
therefore be able to create the libc_hidden_builtin_proto (__syslog_chk)
prototype.

Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'include')
-rw-r--r--include/bits/syslog-decl.h1
-rw-r--r--include/sys/syslog.h4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/bits/syslog-decl.h b/include/bits/syslog-decl.h
new file mode 100644
index 0000000000..491a263777
--- /dev/null
+++ b/include/bits/syslog-decl.h
@@ -0,0 +1 @@
+#include <misc/bits/syslog-decl.h>
diff --git a/include/sys/syslog.h b/include/sys/syslog.h
index 44422eab13..1566228860 100644
--- a/include/sys/syslog.h
+++ b/include/sys/syslog.h
@@ -3,6 +3,8 @@
 #include <misc/sys/syslog.h>
 #ifndef _ISOMAC
 
+#include <bits/syslog-decl.h>
+
 libc_hidden_ldbl_proto (syslog)
 
 /* __vsyslog_internal uses the same mode_flags bits as
@@ -12,5 +14,7 @@ extern void __vsyslog_internal (int pri, const char *fmt, __gnuc_va_list ap,
      attribute_hidden
      __attribute__ ((__format__ (__printf__, 2, 0)));
 
+libc_hidden_ldbl_proto (__syslog_chk)
+
 #endif /* _ISOMAC */
 #endif /* syslog.h */