commit c4f74830273aacb20d4a8e1dff26185a03c10827
parent 2de41fd4c3168f3200672fb00bd6f87452c653af
Author: neauoire <aliceffekt@gmail.com>
Date: Sun, 27 Mar 2022 09:18:02 -0700
Arranged include order
Diffstat:
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/devices/file.c b/src/devices/file.c
@@ -1,3 +1,9 @@
+#include <stdio.h>
+#include <dirent.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
#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 <stdio.h>
-#include <dirent.h>
-#include <string.h>
-#include <sys/stat.h>
-#include <unistd.h>
-
typedef struct {
FILE *f;
DIR *dir;
diff --git a/src/devices/system.c b/src/devices/system.c
@@ -1,8 +1,8 @@
+#include <stdio.h>
+
#include "../uxn.h"
#include "system.h"
-#include <stdio.h>
-
/*
Copyright (c) 2022 Devine Lu Linvega, Andrew Alderwick