diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-02-03 23:17:43 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-02-03 23:17:43 +0000 |
commit | 3c2fe34f82fb962813798a96290f341fc6d1c03a (patch) | |
tree | 30f58eaf79952a5206ab96f5242cae7f21a39d17 | |
parent | 57f713a6e5a6619e6b428c8b47c317e49106497f (diff) |
ok, now its actually working, it needs to be loaded as a lib
svn path=/trunk/; revision=4547
-rw-r--r-- | externals/build/src/liblist.c (renamed from externals/build/src/list.c) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/externals/build/src/list.c b/externals/build/src/liblist.c index a90a7783..6b22e043 100644 --- a/externals/build/src/list.c +++ b/externals/build/src/liblist.c @@ -88,7 +88,7 @@ static void atoms_copy(int argc, t_atom *from, t_atom *to) /* ------------- fake class to divert inlets to ----------------- */ -t_class *alist_class; +static t_class *alist_class; static void alist_init(t_alist *x) { @@ -165,7 +165,7 @@ static void alist_setup(void) /* ------------- list append --------------------- */ -t_class *list_append_class; +static t_class *list_append_class; typedef struct _list_append { @@ -225,7 +225,7 @@ static void list_append_setup(void) /* ------------- list prepend --------------------- */ -t_class *list_prepend_class; +static t_class *list_prepend_class; typedef struct _list_prepend { @@ -285,7 +285,7 @@ static void list_prepend_setup(void) /* ------------- list split --------------------- */ -t_class *list_split_class; +static t_class *list_split_class; typedef struct _list_split { @@ -344,7 +344,7 @@ static void list_split_setup(void) /* ------------- list trim --------------------- */ -t_class *list_trim_class; +static t_class *list_trim_class; typedef struct _list_trim { @@ -409,7 +409,7 @@ static void *list_new(t_pd *dummy, t_symbol *s, int argc, t_atom *argv) return (newest); } -void list_setup(void) +void liblist_setup(void) { alist_setup(); list_append_setup(); |