Arranged include order

This commit is contained in:
neauoire 2022-03-27 09:18:02 -07:00
parent 2de41fd4c3
commit c4f7483027
2 changed files with 8 additions and 8 deletions

View File

@ -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;

View File

@ -1,8 +1,8 @@
#include <stdio.h>
#include "../uxn.h"
#include "system.h"
#include <stdio.h>
/*
Copyright (c) 2022 Devine Lu Linvega, Andrew Alderwick