diff options
author | 2006-01-20 23:10:19 +0000 | |
---|---|---|
committer | 2006-01-20 23:10:19 +0000 | |
commit | 0b7a013e1b4e5d2cf5d04550abb70eebbd2216fe (patch) | |
tree | fd723f8a4443a6193e0baebae4a11d7fcc1ba1d1 /usr.bin/m4/main.c | |
parent | remove redundant code from nfe_attach(). (diff) | |
download | wireguard-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.c | 4 |
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> |