summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2001-05-07 02:51:59 +0000
committerlukem <lukem@NetBSD.org>2001-05-07 02:51:59 +0000
commit3b2a77c39326349eb748eaf2dd1526bc2b5f99e1 (patch)
tree224d5563f9d7293ee151fb43f746ac03554a4463 /lib/libc/stdlib
parent8e5a4722c54cda68c312c068680b430722e07039 (diff)
need stdio.h for NULL...
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/strtoumax.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtoumax.c b/lib/libc/stdlib/strtoumax.c
index 2c07a360e12..977e0bd2f79 100644
--- a/lib/libc/stdlib/strtoumax.c
+++ b/lib/libc/stdlib/strtoumax.c
@@ -1,4 +1,4 @@
-/* $NetBSD: strtoumax.c,v 1.1 2001/04/28 15:41:30 kleink Exp $ */
+/* $NetBSD: strtoumax.c,v 1.2 2001/05/07 02:51:59 lukem Exp $ */
/*
* Copyright (c) 1990, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)strtoul.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: strtoumax.c,v 1.1 2001/04/28 15:41:30 kleink Exp $");
+__RCSID("$NetBSD: strtoumax.c,v 1.2 2001/05/07 02:51:59 lukem Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -47,6 +47,7 @@ __RCSID("$NetBSD: strtoumax.c,v 1.1 2001/04/28 15:41:30 kleink Exp $");
#include <ctype.h>
#include <errno.h>
#include <inttypes.h>
+#include <stdio.h>
#ifdef __weak_alias
__weak_alias(strtoumax, _strtoumax)