Fix building without Tram

This commit is contained in:
2026-04-15 15:03:29 +10:00
parent e4b5aafe35
commit 731d018857

View File

@@ -1,5 +1,9 @@
#include "types.h" #include "types.h"
#ifdef GROUND_COMPILE_WITH_TRAM
#include <tram.h> #include <tram.h>
#endif
void compileGroundProgram(GroundProgram* program, char* name); void compileGroundProgram(GroundProgram* program, char* name);
#ifdef GROUND_COMPILE_WITH_TRAM
void compileGroundInstruction(GroundInstruction* instruction, Tram_Program* program); void compileGroundInstruction(GroundInstruction* instruction, Tram_Program* program);
#endif