diff options
author | 2015-09-10 18:13:46 +0000 | |
---|---|---|
committer | 2015-09-10 18:13:46 +0000 | |
commit | e6f98e3a163d69d2a20131b8c80e6fad49fe7683 (patch) | |
tree | 5ab5a47b62d9d534bee925c48d67d4c5031e09a1 /lib/libc/softfloat/fpgetsticky.c | |
parent | When loading a DSA key from an raw (without DH parameters) ASN.1 serialization, (diff) | |
download | wireguard-openbsd-e6f98e3a163d69d2a20131b8c80e6fad49fe7683.tar.xz wireguard-openbsd-e6f98e3a163d69d2a20131b8c80e6fad49fe7683.zip |
Pull in namespace.h when building all .c files using gcc's -include option,
so that we can provide asm labels for the memcpy/memset/__stack_smash_handler
calls that it generates ab initio. Eliminate direct #includes of it. Make
sure it's a dependency of all objects (unnecessary for asm, but close enough).
ok deraadt@
Diffstat (limited to 'lib/libc/softfloat/fpgetsticky.c')
-rw-r--r-- | lib/libc/softfloat/fpgetsticky.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/softfloat/fpgetsticky.c b/lib/libc/softfloat/fpgetsticky.c index c8b7c114f5b..644a2941cee 100644 --- a/lib/libc/softfloat/fpgetsticky.c +++ b/lib/libc/softfloat/fpgetsticky.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fpgetsticky.c,v 1.3 2012/12/05 23:20:01 deraadt Exp $ */ +/* $OpenBSD: fpgetsticky.c,v 1.4 2015/09/10 18:13:46 guenther Exp $ */ /* $NetBSD: fpgetsticky.c,v 1.2 2002/01/13 21:45:53 thorpej Exp $ */ /*- @@ -30,8 +30,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include "namespace.h" - #include <ieeefp.h> #ifdef SOFTFLOAT_FOR_GCC #include "softfloat-for-gcc.h" |