summaryrefslogtreecommitdiffstats
path: root/usr.bin/m4/main.c
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2006-01-20 23:10:19 +0000
committerespie <espie@openbsd.org>2006-01-20 23:10:19 +0000
commit0b7a013e1b4e5d2cf5d04550abb70eebbd2216fe (patch)
treefd723f8a4443a6193e0baebae4a11d7fcc1ba1d1 /usr.bin/m4/main.c
parentremove redundant code from nfe_attach(). (diff)
downloadwireguard-openbsd-0b7a013e1b4e5d2cf5d04550abb70eebbd2216fe.tar.xz
wireguard-openbsd-0b7a013e1b4e5d2cf5d04550abb70eebbd2216fe.zip
use stdint.h where appropriate. okay millert@
Diffstat (limited to 'usr.bin/m4/main.c')
-rw-r--r--usr.bin/m4/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/m4/main.c b/usr.bin/m4/main.c
index d53dd8a0da8..a5ed6cd98ef 100644
--- a/usr.bin/m4/main.c
+++ b/usr.bin/m4/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.68 2005/09/06 15:33:21 espie Exp $ */
+/* $OpenBSD: main.c,v 1.69 2006/01/20 23:10:19 espie Exp $ */
/* $NetBSD: main.c,v 1.12 1997/02/08 23:54:49 cgd Exp $ */
/*-
@@ -39,7 +39,6 @@
* by: oz
*/
-#include <sys/types.h>
#include <assert.h>
#include <signal.h>
#include <errno.h>
@@ -48,6 +47,7 @@
#include <ctype.h>
#include <string.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include <ohash.h>
#include <err.h>