Only need <stdint.h> and not <inttypes.h> here
authorguenther <guenther@openbsd.org>
Sat, 9 Aug 2014 03:29:35 +0000 (03:29 +0000)
committerguenther <guenther@openbsd.org>
Sat, 9 Aug 2014 03:29:35 +0000 (03:29 +0000)
lib/librthread/rthread_attr.c
lib/librthread/rthread_np.c

index 05f7f3c..9959e1c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rthread_attr.c,v 1.19 2012/03/22 15:26:04 kurt Exp $ */
+/*     $OpenBSD: rthread_attr.c,v 1.20 2014/08/09 03:29:35 guenther Exp $ */
 /*
  * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org>
  * All Rights Reserved.
@@ -19,7 +19,7 @@
  * generic attribute support
  */
 
-#include <inttypes.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <errno.h>
index 347ddb6..7e73ce1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rthread_np.c,v 1.13 2014/07/08 17:19:22 deraadt Exp $ */
+/*     $OpenBSD: rthread_np.c,v 1.14 2014/08/09 03:29:35 guenther Exp $        */
 /*
  * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org>
  * Copyright (c) 2005 Otto Moerbeek <otto@openbsd.org>
@@ -24,7 +24,7 @@
 #include <sys/queue.h>
 #include <sys/sysctl.h>
 
-#include <inttypes.h>
+#include <stdint.h>
 #include <errno.h>
 #include <pthread.h>
 #include <pthread_np.h>