From c4f74830273aacb20d4a8e1dff26185a03c10827 Mon Sep 17 00:00:00 2001 From: neauoire Date: Sun, 27 Mar 2022 09:18:02 -0700 Subject: [PATCH] Arranged include order --- src/devices/file.c | 12 ++++++------ src/devices/system.c | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/devices/file.c b/src/devices/file.c index d31d88e..d99545f 100644 --- a/src/devices/file.c +++ b/src/devices/file.c @@ -1,3 +1,9 @@ +#include +#include +#include +#include +#include + #include "../uxn.h" #include "file.h" @@ -13,12 +19,6 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE. */ -#include -#include -#include -#include -#include - typedef struct { FILE *f; DIR *dir; diff --git a/src/devices/system.c b/src/devices/system.c index 021a736..a70fdd7 100644 --- a/src/devices/system.c +++ b/src/devices/system.c @@ -1,8 +1,8 @@ +#include + #include "../uxn.h" #include "system.h" -#include - /* Copyright (c) 2022 Devine Lu Linvega, Andrew Alderwick