about summary refs log tree commit diff
path: root/thread.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-18 17:06:41 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-18 17:06:41 +0200
commit22f456a2a02d2b8b4b6fb4da9927683bc5d4a29f (patch)
treefac7537e31634d146cc65f96344d81fbfbaacbcb /thread.c
parent4babc3e95acc89e5e483c1ee5050272454eccfdc (diff)
downloadmblaze-22f456a2a02d2b8b4b6fb4da9927683bc5d4a29f.tar.gz
mblaze-22f456a2a02d2b8b4b6fb4da9927683bc5d4a29f.tar.xz
mblaze-22f456a2a02d2b8b4b6fb4da9927683bc5d4a29f.zip
clean up header includes
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/thread.c b/thread.c
index f919442..e4766d0 100644
--- a/thread.c
+++ b/thread.c
@@ -5,21 +5,17 @@
  * subject threading and sibling sorting is not done yet
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdint.h>
-#include <sys/types.h>
 #include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <ctype.h>
-#include <string.h>
-#include <errno.h>
-#include <time.h>
-#include <wchar.h>
+#include <sys/types.h>
 
+#include <errno.h>
+#include <fcntl.h>
 #include <search.h>
-
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
 
 #include "blaze822.h"