diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-01-20 23:10:20 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-01-20 23:10:20 +0000 |
commit | bb73845798cff57670d538da76e8d33d95a83c96 (patch) | |
tree | 9e05f9d8f0f4336731a34377fb78a85d6a5d7312 /usr.bin/make/cond.c | |
parent | f0d48f87e2fca677ee8cf862dadddda3c3dd47ee (diff) |
use stdint.h where appropriate. okay millert@
Diffstat (limited to 'usr.bin/make/cond.c')
-rw-r--r-- | usr.bin/make/cond.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/make/cond.c b/usr.bin/make/cond.c index 500057da0c4..62944e6c519 100644 --- a/usr.bin/make/cond.c +++ b/usr.bin/make/cond.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: cond.c,v 1.30 2004/04/07 13:11:35 espie Exp $ */ +/* $OpenBSD: cond.c,v 1.31 2006/01/20 23:10:19 espie Exp $ */ /* $NetBSD: cond.c,v 1.7 1996/11/06 17:59:02 christos Exp $ */ /* @@ -39,6 +39,7 @@ #include <ctype.h> #include <stddef.h> #include <stdio.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> #include "config.h" @@ -850,7 +851,7 @@ Cond_Eval(const char *line) { /* find end of keyword */ const char *end; - u_int32_t k; + uint32_t k; size_t len; struct If *ifp; bool value = false; |