diff options
-rw-r--r-- | externals/vanilla/Makefile | 2 | ||||
-rw-r--r-- | externals/vanilla/list.c (renamed from externals/vanilla/lib_x_list.c) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/externals/vanilla/Makefile b/externals/vanilla/Makefile index d3eb93d7..5c635ff0 100644 --- a/externals/vanilla/Makefile +++ b/externals/vanilla/Makefile @@ -4,7 +4,7 @@ LIBRARY_NAME = vanilla # Next, add your source files to the SOURCES variable. -SOURCES = abs~.c bng.c clip~.c cnv.c dbtopow~.c dbtorms~.c exp~.c ftom~.c hradio.c hsl.c log~.c mtof~.c nbx.c powtodb~.c pow~.c print.c qlist.c rmstodb~.c rsqrt~.c sqrt~.c textfile.c tgl.c vradio.c vslider.c vu.c wrap~.c +SOURCES = abs~.c bng.c clip~.c cnv.c dbtopow~.c dbtorms~.c exp~.c ftom~.c hradio.c hsl.c list.c log~.c mtof~.c nbx.c powtodb~.c pow~.c print.c qlist.c rmstodb~.c rsqrt~.c sqrt~.c textfile.c tgl.c vradio.c vslider.c vu.c wrap~.c # For objects that only build on certain platforms, add those to the SOURCES diff --git a/externals/vanilla/lib_x_list.c b/externals/vanilla/list.c index 66147687..34b8b593 100644 --- a/externals/vanilla/lib_x_list.c +++ b/externals/vanilla/list.c @@ -1,5 +1,5 @@ #include "../../pd/src/x_list.c" -void lib_x_list_setup(void) +void list_setup(void) { x_list_setup(); } |