summaryrefslogtreecommitdiffstats
path: root/lib/libc/include/atfork.h
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2015-08-27 04:37:09 +0000
committerguenther <guenther@openbsd.org>2015-08-27 04:37:09 +0000
commitbb64080b0f4926cfaad11f8655a5a0ff1c21e50f (patch)
tree2f9ddff73dde02f16705737abba78e6aa5e185c8 /lib/libc/include/atfork.h
parentMove the __rand48_* declarations into rand48.h, and then hide both them (diff)
downloadwireguard-openbsd-bb64080b0f4926cfaad11f8655a5a0ff1c21e50f.tar.xz
wireguard-openbsd-bb64080b0f4926cfaad11f8655a5a0ff1c21e50f.zip
Use static and __{BEGIN,ENV}_HIDDEN_DECLS to hide a bunch of internal
symbols that are not longer exported. (This improves the generated code.) ok deraadt@
Diffstat (limited to 'lib/libc/include/atfork.h')
-rw-r--r--lib/libc/include/atfork.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/include/atfork.h b/lib/libc/include/atfork.h
index 8ec611098c1..f09de4892af 100644
--- a/lib/libc/include/atfork.h
+++ b/lib/libc/include/atfork.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: atfork.h,v 1.1 2015/04/07 01:27:07 guenther Exp $ */
+/* $OpenBSD: atfork.h,v 1.2 2015/08/27 04:37:09 guenther Exp $ */
/*
* Copyright (c) 2008 Kurt Miller <kurt@openbsd.org>
@@ -40,5 +40,6 @@ struct atfork_fn {
void *fn_dso;
};
+__BEGIN_HIDDEN_DECLS
extern TAILQ_HEAD(atfork_listhead, atfork_fn) _atfork_list;
-
+__END_HIDDEN_DECLS