Fix dfrotz compile on MACOS
authorBill Lash <william.lash@gmail.com>
Sat, 22 Jun 2019 04:36:12 +0000 (23:36 -0500)
committerBill Lash <william.lash@gmail.com>
Sat, 22 Jun 2019 04:36:12 +0000 (23:36 -0500)
Need to include dumb_frotz.h before system headers on MACOS

src/dumb/dumb_blorb.c

index 6226fc2bd16c2a971e17f3855617a7b76b111416..ff3795d1b09e20c4c17a8996cf2cf5c13f0e7183 100644 (file)
@@ -20,6 +20,9 @@
  */
 
 
+#include "dumb_frotz.h"
+#include "dumb_blorb.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -28,8 +31,6 @@
 #include <libgen.h>
 #include <math.h>
 
-#include "dumb_frotz.h"
-#include "dumb_blorb.h"
 
 /* Don't build any of this if we don't want Blorb support. */
 #ifndef NO_BLORB