aboutsummaryrefslogtreecommitdiffstats
path: root/man3/pthread_getcpuclockid.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/pthread_getcpuclockid.3')
-rw-r--r--man3/pthread_getcpuclockid.310
1 files changed, 5 insertions, 5 deletions
diff --git a/man3/pthread_getcpuclockid.3 b/man3/pthread_getcpuclockid.3
index fa5369472f..76cbe05631 100644
--- a/man3/pthread_getcpuclockid.3
+++ b/man3/pthread_getcpuclockid.3
@@ -100,14 +100,14 @@ Subthread CPU time: 0.992
.EX
/* Link with "\-lrt" */
-#include <time.h>
-#include <stdio.h>
+#include <errno.h>
+#include <pthread.h>
#include <stdint.h>
+#include <stdio.h>
#include <stdlib.h>
-#include <unistd.h>
-#include <pthread.h>
#include <string.h>
-#include <errno.h>
+#include <time.h>
+#include <unistd.h>
#define handle_error(msg) \e
do { perror(msg); exit(EXIT_FAILURE); } while (0)