summaryrefslogtreecommitdiff
path: root/lib/librthread
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-08-09 03:29:36 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-08-09 03:29:36 +0000
commitba1b49df2a94d0ebb83397b8348c5b0b1003dcac (patch)
tree033f1f7282934f1b371ea41029103505ed2b565f /lib/librthread
parentaa243b85a0b9cae10fc1a51936fcff6b9d0567b8 (diff)
Only need <stdint.h> and not <inttypes.h> here
Diffstat (limited to 'lib/librthread')
-rw-r--r--lib/librthread/rthread_attr.c4
-rw-r--r--lib/librthread/rthread_np.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/librthread/rthread_attr.c b/lib/librthread/rthread_attr.c
index 05f7f3c1f9c..9959e1c49ec 100644
--- a/lib/librthread/rthread_attr.c
+++ b/lib/librthread/rthread_attr.c
@@ -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>
diff --git a/lib/librthread/rthread_np.c b/lib/librthread/rthread_np.c
index 347ddb62892..7e73ce12d45 100644
--- a/lib/librthread/rthread_np.c
+++ b/lib/librthread/rthread_np.c
@@ -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>