summaryrefslogtreecommitdiff
path: root/usr.bin/make/cond.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/cond.c')
-rw-r--r--usr.bin/make/cond.c5
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;