summarylogtreecommitdiffstats
path: root/remove_include.patch
blob: 40c364fe974e7c57830b530fce3d95d232913277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/runtime.in b/runtime.in
index f3b6899c..34384526 100644
--- a/runtime.in
+++ b/runtime.in
@@ -138,7 +138,7 @@ using vm::array;
 using types::function;
 
 #define PRIMITIVE(name,Name,asyName) using types::prim##Name;
-#include <primitives.h>
+#include "primitives.h"
 #undef PRIMITIVE
 
 using types::booleanArray;
diff --git a/runtimebase.in b/runtimebase.in
index 86237de3..cca8e926 100644
--- a/runtimebase.in
+++ b/runtimebase.in
@@ -40,7 +40,7 @@ using types::function;
 using camp::triple;
 
 #define PRIMITIVE(name,Name,asyName) using types::prim##Name;
-#include <primitives.h>
+#include "primitives.h"
 #undef PRIMITIVE
 
 typedef double real;