summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-08-10 05:08:31 +0000
committerguenther <guenther@openbsd.org>2014-08-10 05:08:31 +0000
commit0eba73db19efecab8d11b91928dae628e5cacb64 (patch)
treec238806eb9394625161d53a169129e638a7fd334
parentOnly need <stdint.h> and not all of <inttypes.h> here (diff)
downloadwireguard-openbsd-0eba73db19efecab8d11b91928dae628e5cacb64.tar.xz
wireguard-openbsd-0eba73db19efecab8d11b91928dae628e5cacb64.zip
Only need <stdint.h> and not all of <inttypes.h> here
-rw-r--r--regress/lib/libpthread/stack/stack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libpthread/stack/stack.c b/regress/lib/libpthread/stack/stack.c
index 32435b95800..9a181dc806d 100644
--- a/regress/lib/libpthread/stack/stack.c
+++ b/regress/lib/libpthread/stack/stack.c
@@ -1,11 +1,11 @@
-/* $OpenBSD: stack.c,v 1.3 2012/08/04 21:55:22 guenther Exp $ */
+/* $OpenBSD: stack.c,v 1.4 2014/08/10 05:08:31 guenther Exp $ */
/* PUBLIC DOMAIN Feb 2012 <guenther@openbsd.org> */
/* Test the handling of the pthread_attr_t stack attributes */
#include <sys/types.h>
#include <sys/mman.h>
-#include <inttypes.h>
+#include <stdint.h>
#include <limits.h>
#include <pthread.h>
#include <stdio.h>