Only need <stdint.h> and not all of <inttypes.h> here
authorguenther <guenther@openbsd.org>
Sun, 10 Aug 2014 02:15:18 +0000 (02:15 +0000)
committerguenther <guenther@openbsd.org>
Sun, 10 Aug 2014 02:15:18 +0000 (02:15 +0000)
lib/libc/gdtoa/ldtoa.c
lib/libc/stdlib/hcreate.c

index 793d71c..16f6f9c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ldtoa.c,v 1.1 2008/09/07 20:36:08 martynas Exp $      */
+/*     $OpenBSD: ldtoa.c,v 1.2 2014/08/10 02:15:18 guenther Exp $      */
 /*-
  * Copyright (c) 2003 David Schultz <das@FreeBSD.ORG>
  * All rights reserved.
@@ -30,7 +30,7 @@
 #include <machine/ieee.h>
 #endif /* !__vax__ */
 #include <float.h>
-#include <inttypes.h>
+#include <stdint.h>
 #include <limits.h>
 #include <math.h>
 #include <stdlib.h>
index 094f32c..d0a3770 100644 (file)
@@ -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>