diff runtime/context.h @ 52:079200bc3e75

String literals almost working. Print moved out of C runtime.
author Mike Pavone <pavone@retrodev.com>
date Wed, 28 Apr 2010 01:23:30 -0400
parents 8d74ef7fa357
children 70af7fa155d0
line wrap: on
line diff
--- a/runtime/context.h	Thu Apr 22 02:18:26 2010 -0400
+++ b/runtime/context.h	Wed Apr 28 01:23:30 2010 -0400
@@ -29,5 +29,6 @@
 context * new_context();
 void * alloc_stack(context * ct, uint32_t size);
 struct calldata * alloc_cdata(context * ct, uint32_t num_params);
-void free_stack(context * ct, void * data);
+void free_stack(context * ct, void * data);
+void free_context(context * c);
 #endif //_CONTEXT_H_