diff options
author | 2015-10-04 07:33:46 +0000 | |
---|---|---|
committer | 2015-10-04 07:33:46 +0000 | |
commit | 7645a7bf7333eb7d257efb0996dadec079cdff5a (patch) | |
tree | 956d5422e2d9a23525894d039a86c12175be081a /lib/libc/stdio/local.h | |
parent | Add tame(2) to file(1) and drop the old systrace(4) sandbox. tame(2) is (diff) | |
download | wireguard-openbsd-7645a7bf7333eb7d257efb0996dadec079cdff5a.tar.xz wireguard-openbsd-7645a7bf7333eb7d257efb0996dadec079cdff5a.zip |
wrap _fwalk() so internal calls are direct (at least until we stop
exporting it)
Diffstat (limited to 'lib/libc/stdio/local.h')
-rw-r--r-- | lib/libc/stdio/local.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 56cdf22d9f1..79f23654524 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: local.h,v 1.21 2015/08/27 04:37:09 guenther Exp $ */ +/* $OpenBSD: local.h,v 1.22 2015/10/04 07:33:46 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -43,6 +43,7 @@ void _cleanup(void); int _fwalk(int (*)(FILE *)); +PROTO_NORMAL(_fwalk); extern void __atexit_register_cleanup(void (*)(void)); |