]> gitweb.hhaalo.de Git - discspan.git/commitdiff
fix: headers in readfile load in c file
authorBastian Dehn <hhaalo@arcor.de>
Sun, 12 Jan 2020 19:27:42 +0000 (20:27 +0100)
committerBastian Dehn <hhaalo@arcor.de>
Sun, 12 Jan 2020 19:27:42 +0000 (20:27 +0100)
readfile.c
readfile.h

index c857a72bd1995b08701f50e296997bacc6c1067c..0ba6b41f9d11b60120c5d26ef1298dec0916b72f 100644 (file)
@@ -1,7 +1,9 @@
 #include <sys/stat.h>
 #include <string.h>
 #include <stdlib.h>
+#include <stdio.h>
 
+#include "discspan.h"
 #include "readfile.h"
 
 extern int struct_array_length;
index 5fb4e08d025cd6cbbb9fcb35cd5600e84220f25d..8547e66a7bd19f5641a65922c9c27585b980dd99 100644 (file)
@@ -1,10 +1,6 @@
 #ifndef _READFILE_H
 #define _READFILE_H
 
-#include "stdio.h"
-
-#include "discspan.h"
-
 file_size_t * read_input_file(const char *input);
 
 #endif