summaryrefslogtreecommitdiff
path: root/apps/plugins/wav2wv.c
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-01-24 22:57:57 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-01-24 22:57:57 +0000
commit499426caf953627696415515c4a95513d5dbc329 (patch)
tree01924fa67b9bf133a7c986274ced07d7e66c978d /apps/plugins/wav2wv.c
parent2490262eee17c3dcff0a39fb4011662dfdfc4478 (diff)
downloadrockbox-499426caf953627696415515c4a95513d5dbc329.tar.gz
rockbox-499426caf953627696415515c4a95513d5dbc329.zip
remove MEM_FUNCTION_WRAPPERS, and private mem* implementations from plugins, and replace with pluginlib implementations in plugins/lib/gcc-support.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19847 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/wav2wv.c')
-rw-r--r--apps/plugins/wav2wv.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/plugins/wav2wv.c b/apps/plugins/wav2wv.c
index a1d4e630b8..a3bd0a9d59 100644
--- a/apps/plugins/wav2wv.c
+++ b/apps/plugins/wav2wv.c
@@ -29,14 +29,6 @@ PLUGIN_HEADER
29 29
30#define SAMPLES_PER_BLOCK 22050 30#define SAMPLES_PER_BLOCK 22050
31 31
32void *memset(void *s, int c, size_t n) {
33 return(rb->memset(s,c,n));
34}
35
36void *memcpy(void *dest, const void *src, size_t n) {
37 return(rb->memcpy(dest,src,n));
38}
39
40static char *audiobuf; 32static char *audiobuf;
41static ssize_t audiobuflen; 33static ssize_t audiobuflen;
42 34