aboutsummaryrefslogtreecommitdiff
path: root/src/file.c
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2021-05-30 18:10:42 +0200
committerJan Sucan <jan@jansucan.com>2021-05-30 18:10:42 +0200
commitf1ced068f1eccdf2866a91334d4e271e8f94802d (patch)
tree3b582b4a96dacdc8bb1420dae964a49f8f7bbfdd /src/file.c
parente19731f6d38aa0931f59bba95565c8f40f1dc3b0 (diff)
Unify ordering of the includes
Diffstat (limited to 'src/file.c')
-rw-r--r--src/file.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/file.c b/src/file.c
index 0dc36de..634bb3b 100644
--- a/src/file.c
+++ b/src/file.c
@@ -24,12 +24,13 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <errno.h>
-#include <string.h>
-
#include "file.h"
+
#include "print.h"
+#include <errno.h>
+#include <string.h>
+
long
file_size(FILE *const file)
{