diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-01-25 15:30:32 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-01-25 15:30:32 +0000 |
commit | 1ea230f8d6d79ca17278063d56edb78eabd1db05 (patch) | |
tree | ef426df69e909c6935a6b76043384917471404f4 | |
parent | 5ceeb2a6a4a26e169312547d60f5d5f509d77ddb (diff) |
made list2symbol() static
svn path=/trunk/externals/zexy/; revision=4492
-rw-r--r-- | src/makesymbol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makesymbol.c b/src/makesymbol.c index 3557b57..690ed17 100644 --- a/src/makesymbol.c +++ b/src/makesymbol.c @@ -57,7 +57,7 @@ static void reset_mask(t_makesymbol *x, t_symbol *s) typedef char cstring[MAXSTRINGLENG]; -t_symbol* list2symbol(char *masque, int argc, t_atom *argv) +static t_symbol* list2symbol(char *masque, int argc, t_atom *argv) { // cstring buf[MAXSTRINGARGS]; cstring*buf=(cstring*)getbytes(MAXSTRINGARGS*sizeof(cstring)); |