summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-08-10 02:15:19 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-08-10 02:15:19 +0000
commit93831b02bf0f96e02d6becc6db9284defeda49e8 (patch)
tree08520fbf08ece44811f42d345ab3cdadf35767ee /lib/libc/stdlib
parent0af370f63dfc4fa78b8fb09b41571fc1caa77a5f (diff)
Only need <stdint.h> and not all of <inttypes.h> here
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/hcreate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/hcreate.c b/lib/libc/stdlib/hcreate.c
index 094f32c173e..d0a377010ed 100644
--- a/lib/libc/stdlib/hcreate.c
+++ b/lib/libc/stdlib/hcreate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hcreate.c,v 1.4 2007/09/02 15:19:17 deraadt Exp $ */
+/* $OpenBSD: hcreate.c,v 1.5 2014/08/10 02:15:18 guenther Exp $ */
/* $NetBSD: hcreate.c,v 1.5 2004/04/23 02:48:12 simonb Exp $ */
/*
@@ -50,7 +50,7 @@
#include "namespace.h"
#include <assert.h>
#include <errno.h>
-#include <inttypes.h>
+#include <stdint.h>
#include <search.h>
#include <stdlib.h>
#include <string.h>