summaryrefslogtreecommitdiff
path: root/libgpython/include/gpython
diff options
context:
space:
mode:
authorredbrain <redbrain@crules.org>2010-07-10 04:18:53 +0100
committerredbrain <redbrain@crules.org>2010-07-10 04:18:53 +0100
commitad2fae245d31e36ba5e0b866565a97f98976aa68 (patch)
tree7372362e3daccf3938a5d64b24fce5bf7873ef5b /libgpython/include/gpython
parent7a05a7a02ff7b192040f00b657d3cf3a5148a108 (diff)
downloadgcc-ad2fae245d31e36ba5e0b866565a97f98976aa68.tar.gz
seperate out vector code in its own
Diffstat (limited to 'libgpython/include/gpython')
-rw-r--r--libgpython/include/gpython/garbage.h4
-rw-r--r--libgpython/include/gpython/gpython.h1
2 files changed, 3 insertions, 2 deletions
diff --git a/libgpython/include/gpython/garbage.h b/libgpython/include/gpython/garbage.h
index 6d36e504ca7..5c19076e0ad 100644
--- a/libgpython/include/gpython/garbage.h
+++ b/libgpython/include/gpython/garbage.h
@@ -17,8 +17,8 @@ along with GCC; see the file COPYING3. If not see
#ifndef __GCC_GARBAGE_H__
#define __GCC_GARBAGE_H__
-extern gpy_hash_tab_t * gpy_primitives;
-extern gpy_vector_t * gpy_namesapce_stack;
+extern gpy_vector_t * gpy_primitives;
+extern gpy_vector_t * gpy_namespace_vec;
extern gpy_vector_t * gpy_garbage_vec;
extern void gpy_rr_init_primitives( gpy_hash_tab_t * const );
diff --git a/libgpython/include/gpython/gpython.h b/libgpython/include/gpython/gpython.h
index 34ee75b6a71..983bef0f264 100644
--- a/libgpython/include/gpython/gpython.h
+++ b/libgpython/include/gpython/gpython.h
@@ -182,5 +182,6 @@ extern void gpy_rr_init_runtime( void );
extern gpy_object_state_t gpy_rr_fold_integer( int );
extern void gpy_obj_integer_mod_init( void );
+extern void gpy_rr_init_primitives( void );
#endif //__GCC_GPYTHON_H__