diff runtime/context.h @ 53:70af7fa155d0

Cleaned up some C warnings and added a simple compile script
author Mike Pavone <pavone@retrodev.com>
date Thu, 29 Apr 2010 04:32:54 +0000
parents 079200bc3e75
children 04baa003de5a
line wrap: on
line diff
--- a/runtime/context.h	Wed Apr 28 01:23:30 2010 -0400
+++ b/runtime/context.h	Thu Apr 29 04:32:54 2010 +0000
@@ -16,7 +16,7 @@
 
 typedef struct {
 	rhope_func       func;
-	struct calldata  *params;
+	calldata  *params;
 } unwind_cell;
 
 typedef struct context {
@@ -28,7 +28,7 @@
 stackchunk * new_stack();
 context * new_context();
 void * alloc_stack(context * ct, uint32_t size);
-struct calldata * alloc_cdata(context * ct, uint32_t num_params);
+calldata * alloc_cdata(context * ct, uint32_t num_params);
 void free_stack(context * ct, void * data);
 void free_context(context * c);
 #endif //_CONTEXT_H_