summaryrefslogtreecommitdiff
path: root/globals.m
diff options
context:
space:
mode:
Diffstat (limited to 'globals.m')
-rw-r--r--globals.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/globals.m b/globals.m
index 8781620..e97ff56 100644
--- a/globals.m
+++ b/globals.m
@@ -20,8 +20,8 @@
#import <Foundation/NSObject.h>
-
id MLKEndOfArgumentsMarker;
+CONTINUATION *MLKRootContinuation;
id MLKDefaultCompiler = nil;
BOOL MLKLoadCompilesP = NO;
@@ -34,6 +34,8 @@ BOOL MLKLoadCompilesP = NO;
@implementation MLKGlobalManager
+(void) load
{
+ STACKITEM i;
MLKEndOfArgumentsMarker = [[NSObject alloc] init];
+ MLKRootContinuation = make_root_continuation (&i);
}
@end