Reorder header includes in compile.c

This commit is contained in:
Camden Dixie O'Brien 2024-11-03 11:53:38 +00:00
parent f95de25842
commit 3c4146468e

View File

@ -5,10 +5,10 @@
#include "compile.h" #include "compile.h"
#include "parse.h"
#include "desugar.h"
#include "construct.h" #include "construct.h"
#include "convert.h" #include "convert.h"
#include "desugar.h"
#include "parse.h"
bool compile(const char *regex, int len, fsa_t *dfa_out) bool compile(const char *regex, int len, fsa_t *dfa_out)
{ {