diff object.h @ 19:fbb9a61fa030

Moved context creation code into its own public function in context.c.
author Atul Varma <varmaa@toolness.com>
date Sun, 28 Jun 2009 20:08:59 -0700
parents f3223debd70b
children fc04e5f1c675
line wrap: on
line diff
--- a/object.h	Sun Jun 28 20:00:48 2009 -0700
+++ b/object.h	Sun Jun 28 20:08:59 2009 -0700
@@ -16,6 +16,7 @@
 
 extern PyTypeObject PYM_JSObjectType;
 
-extern PYM_JSObject *PYM_newJSObject(PYM_JSRuntimeObject *runtime,
-                                     JSObject *obj);
+extern PYM_JSObject *
+PYM_newJSObject(PYM_JSRuntimeObject *runtime, JSObject *obj);
+
 #endif