diff runtime/func.h @ 48:a24eb366195c

Fixed some bugs introduced in previous commit and moved definition of integer methods out of runtime and into the compiler
author Mike Pavone <pavone@retrodev.com>
date Tue, 02 Mar 2010 00:18:49 -0500
parents 3498713c3dc9
children 70af7fa155d0
line wrap: on
line diff
--- a/runtime/func.h	Tue Dec 22 01:22:09 2009 -0500
+++ b/runtime/func.h	Tue Mar 02 00:18:49 2010 -0500
@@ -13,7 +13,7 @@
 typedef returntype (*rhope_func)(struct calldata *);
 typedef void (*special_func) (struct object *);
 
-#define MethodName(name,type) f_ ## name ## _AT_ ## type
+#define MethodName(name,type) f_ ## name ## AT_ ## type
 
 #define Func(name,numparams,callspace,localtype) \
 	returntype f_ ## name (calldata * cdata)\
@@ -201,4 +201,4 @@
 	return TAIL_RETURN;
 	
 	
-#endif //_FUNC_H_
\ No newline at end of file
+#endif //_FUNC_H_