diff options
author | guenther <> | 2015-08-27 04:37:09 +0000 |
---|---|---|
committer | guenther <> | 2015-08-27 04:37:09 +0000 |
commit | 9b2397328086b49e1f5d15b4248c6aa164c42a4d (patch) | |
tree | 8c5a65fc0595a111de95e3f98ca573af9e08d429 /src/lib/libc/include/atfork.h | |
parent | 809239262088f866c609ff697c71459aba004e00 (diff) | |
download | openbsd-9b2397328086b49e1f5d15b4248c6aa164c42a4d.tar.gz openbsd-9b2397328086b49e1f5d15b4248c6aa164c42a4d.tar.bz2 openbsd-9b2397328086b49e1f5d15b4248c6aa164c42a4d.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 'src/lib/libc/include/atfork.h')
-rw-r--r-- | src/lib/libc/include/atfork.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libc/include/atfork.h b/src/lib/libc/include/atfork.h index 8ec611098c..f09de4892a 100644 --- a/src/lib/libc/include/atfork.h +++ b/src/lib/libc/include/atfork.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: atfork.h,v 1.1 2015/04/07 01:27:07 guenther Exp $ */ | 1 | /* $OpenBSD: atfork.h,v 1.2 2015/08/27 04:37:09 guenther Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2008 Kurt Miller <kurt@openbsd.org> | 4 | * Copyright (c) 2008 Kurt Miller <kurt@openbsd.org> |
@@ -40,5 +40,6 @@ struct atfork_fn { | |||
40 | void *fn_dso; | 40 | void *fn_dso; |
41 | }; | 41 | }; |
42 | 42 | ||
43 | __BEGIN_HIDDEN_DECLS | ||
43 | extern TAILQ_HEAD(atfork_listhead, atfork_fn) _atfork_list; | 44 | extern TAILQ_HEAD(atfork_listhead, atfork_fn) _atfork_list; |
44 | 45 | __END_HIDDEN_DECLS | |