diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-10 18:13:47 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-10 18:13:47 +0000 |
commit | 9d92f0e0d037b4a80516f5599149f8029e742fcf (patch) | |
tree | abfe1b094a6bb7ba5b358aa91df5edcde8e47e75 /lib/libc/uuid/uuid_is_nil.c | |
parent | 0a3cd2f44990ff43d60121278b611e9c1003d379 (diff) |
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/uuid/uuid_is_nil.c')
-rw-r--r-- | lib/libc/uuid/uuid_is_nil.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/uuid/uuid_is_nil.c b/lib/libc/uuid/uuid_is_nil.c index 4de961233fd..70620950b4c 100644 --- a/lib/libc/uuid/uuid_is_nil.c +++ b/lib/libc/uuid/uuid_is_nil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uuid_is_nil.c,v 1.1 2014/08/31 09:36:39 miod Exp $ */ +/* $OpenBSD: uuid_is_nil.c,v 1.2 2015/09/10 18:13:46 guenther Exp $ */ /* $NetBSD: uuid_is_nil.c,v 1.4 2008/04/23 07:52:32 plunky Exp $ */ /* @@ -30,8 +30,6 @@ * $FreeBSD: src/lib/libc/uuid/uuid_is_nil.c,v 1.2 2003/08/08 19:18:43 marcel Exp $ */ -#include "namespace.h" - #include <string.h> #include <uuid.h> |