summaryrefslogtreecommitdiff
path: root/libgpython/include/gpython
diff options
context:
space:
mode:
authorredbrain <redbrain@crules.org>2010-07-10 04:49:51 +0100
committerredbrain <redbrain@crules.org>2010-07-10 04:49:51 +0100
commite37b3004e9e353890b979858c78ed98a0c05aaa5 (patch)
tree9de82e4593f334b4b3cfbbe8e683d519b2edc538 /libgpython/include/gpython
parent670032acb28cd50c1c91ce382ee0ee7f43fef49d (diff)
downloadgcc-e37b3004e9e353890b979858c78ed98a0c05aaa5.tar.gz
fix some errors
Diffstat (limited to 'libgpython/include/gpython')
-rw-r--r--libgpython/include/gpython/vectors.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libgpython/include/gpython/vectors.h b/libgpython/include/gpython/vectors.h
index 813c3e7790e..343ae7795b6 100644
--- a/libgpython/include/gpython/vectors.h
+++ b/libgpython/include/gpython/vectors.h
@@ -24,6 +24,7 @@ typedef struct gpy_vector_t {
signed long size, length;
} gpy_vector_t;
+typedef gpy_vector_t * gpy_vec_t;
typedef unsigned long gpy_hashval_t;
typedef struct gpy_hash_entry {
@@ -60,6 +61,8 @@ extern void * gpy_vec_pop( gpy_vector_t * const );
extern void gpy_vec_free( gpy_vector_t * );
+extern void gpy_vec_frees( gpy_vector_t *, ... );
+
extern void gpy_obj_integer_mod_init( gpy_vector_t * const );
#endif //__GCC_VECTORS_H__