From 0d4bab00a61cab452ae1fb2e863fde6c52c93480 Mon Sep 17 00:00:00 2001 From: Bill Lash Date: Fri, 21 Jun 2019 23:36:12 -0500 Subject: [PATCH] Fix dfrotz compile on MACOS Need to include dumb_frotz.h before system headers on MACOS --- src/dumb/dumb_blorb.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dumb/dumb_blorb.c b/src/dumb/dumb_blorb.c index 6226fc2..ff3795d 100644 --- a/src/dumb/dumb_blorb.c +++ b/src/dumb/dumb_blorb.c @@ -20,6 +20,9 @@ */ +#include "dumb_frotz.h" +#include "dumb_blorb.h" + #include #include #include @@ -28,8 +31,6 @@ #include #include -#include "dumb_frotz.h" -#include "dumb_blorb.h" /* Don't build any of this if we don't want Blorb support. */ #ifndef NO_BLORB -- 2.34.1