aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-11-01 00:48:40 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-11-01 00:48:40 +0100
commit246b35d1612c6892ccfc9eada9b3d7de8d8f4e11 (patch)
treeeca61399558e632e312875ff3a8a4fe77b60e5e3
parentbb6b8ce9146d77cbea6c37eeac0fd1e760061036 (diff)
Move include to top group
-rw-r--r--src/tpool.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tpool.c b/src/tpool.c
index a381565..7fe93b8 100644
--- a/src/tpool.c
+++ b/src/tpool.c
@@ -4,6 +4,7 @@
#include <pthread.h>
#include <stdatomic.h>
#include <stddef.h>
+#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
@@ -15,8 +16,6 @@
#include "tpool.h"
#include "work.h"
-#include <stdio.h>
-
static int nproc(void);
static void *tpwork(void *);