diff options
author | guenther <> | 2014-08-10 02:15:18 +0000 |
---|---|---|
committer | guenther <> | 2014-08-10 02:15:18 +0000 |
commit | f22e58cf0aa3df4801799a602d1b00d6293a8b46 (patch) | |
tree | 5b43525bb684f40c17e90b4a4f4ee587d5c50164 | |
parent | 2bf89d3e6a8ea56f877482b2550aa4da739bae86 (diff) | |
download | openbsd-f22e58cf0aa3df4801799a602d1b00d6293a8b46.tar.gz openbsd-f22e58cf0aa3df4801799a602d1b00d6293a8b46.tar.bz2 openbsd-f22e58cf0aa3df4801799a602d1b00d6293a8b46.zip |
Only need <stdint.h> and not all of <inttypes.h> here
-rw-r--r-- | src/lib/libc/stdlib/hcreate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/hcreate.c b/src/lib/libc/stdlib/hcreate.c index 094f32c173..d0a377010e 100644 --- a/src/lib/libc/stdlib/hcreate.c +++ b/src/lib/libc/stdlib/hcreate.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: hcreate.c,v 1.4 2007/09/02 15:19:17 deraadt Exp $ */ | 1 | /* $OpenBSD: hcreate.c,v 1.5 2014/08/10 02:15:18 guenther Exp $ */ |
2 | /* $NetBSD: hcreate.c,v 1.5 2004/04/23 02:48:12 simonb Exp $ */ | 2 | /* $NetBSD: hcreate.c,v 1.5 2004/04/23 02:48:12 simonb Exp $ */ |
3 | 3 | ||
4 | /* | 4 | /* |
@@ -50,7 +50,7 @@ | |||
50 | #include "namespace.h" | 50 | #include "namespace.h" |
51 | #include <assert.h> | 51 | #include <assert.h> |
52 | #include <errno.h> | 52 | #include <errno.h> |
53 | #include <inttypes.h> | 53 | #include <stdint.h> |
54 | #include <search.h> | 54 | #include <search.h> |
55 | #include <stdlib.h> | 55 | #include <stdlib.h> |
56 | #include <string.h> | 56 | #include <string.h> |