diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-05 23:20:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-05 23:20:27 +0000 |
commit | 0275dcbbe75bf604e5d9b03f215e510188a36496 (patch) | |
tree | 5c28b494f1e6a54c80a5317abfe2c32e13cbbdc5 /lib/libc/nls | |
parent | 56b74e8e5b53b78f8c539afa3b9581be53b79e06 (diff) |
Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis
Diffstat (limited to 'lib/libc/nls')
-rw-r--r-- | lib/libc/nls/_catclose.c | 4 | ||||
-rw-r--r-- | lib/libc/nls/_catgets.c | 4 | ||||
-rw-r--r-- | lib/libc/nls/_catopen.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/nls/_catclose.c b/lib/libc/nls/_catclose.c index 239f5304386..4fdf78781d6 100644 --- a/lib/libc/nls/_catclose.c +++ b/lib/libc/nls/_catclose.c @@ -1,10 +1,10 @@ -/* $OpenBSD: _catclose.c,v 1.5 2005/08/05 13:03:00 espie Exp $ */ +/* $OpenBSD: _catclose.c,v 1.6 2012/12/05 23:20:00 deraadt Exp $ */ /* * Written by J.T. Conklin, 10/05/94 * Public domain. */ -#include <sys/cdefs.h> +#include <sys/types.h> #ifdef __indr_reference __indr_reference(_catclose,catclose); diff --git a/lib/libc/nls/_catgets.c b/lib/libc/nls/_catgets.c index 36402bd0ef6..532faeec6cf 100644 --- a/lib/libc/nls/_catgets.c +++ b/lib/libc/nls/_catgets.c @@ -1,10 +1,10 @@ -/* $OpenBSD: _catgets.c,v 1.5 2005/08/05 13:03:00 espie Exp $ */ +/* $OpenBSD: _catgets.c,v 1.6 2012/12/05 23:20:00 deraadt Exp $ */ /* * Written by J.T. Conklin, 10/05/94 * Public domain. */ -#include <sys/cdefs.h> +#include <sys/types.h> #ifdef __indr_reference __indr_reference(_catgets,catgets); diff --git a/lib/libc/nls/_catopen.c b/lib/libc/nls/_catopen.c index d07c2a85cc9..5107826ecfc 100644 --- a/lib/libc/nls/_catopen.c +++ b/lib/libc/nls/_catopen.c @@ -1,10 +1,10 @@ -/* $OpenBSD: _catopen.c,v 1.6 2005/08/05 13:03:00 espie Exp $ */ +/* $OpenBSD: _catopen.c,v 1.7 2012/12/05 23:20:00 deraadt Exp $ */ /* * Written by J.T. Conklin, 10/05/94 * Public domain. */ -#include <sys/cdefs.h> +#include <sys/types.h> #ifdef __indr_reference __indr_reference(_catopen,catopen); |