summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-05-07 04:14:59 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-05-07 04:14:59 +0000
commit8ffbe2e467efcdf539f5989c043d19c4d3b6d687 (patch)
treecf5c42df234c0443ad28c62ecd4f3d7a14d66420 /firmware
parent50d9907afac81a5402a444f8bbe204944e76b2b3 (diff)
downloadrockbox-8ffbe2e467efcdf539f5989c043d19c4d3b6d687.tar.gz
rockbox-8ffbe2e467efcdf539f5989c043d19c4d3b6d687.zip
Remove stray function prototype used only for long-ago-removed codec swapping. Function definition was removed when adding internal voice codec.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25868 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/include/memory.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/firmware/include/memory.h b/firmware/include/memory.h
index d025bce610..105d0280b2 100644
--- a/firmware/include/memory.h
+++ b/firmware/include/memory.h
@@ -26,15 +26,4 @@
void memset16(void *dst, int val, size_t len);
-/**
- * memswap128
- *
- * Exchanges the contents of two buffers.
- * For maximum efficiency, this function performs no aligning of addresses
- * and buf1, buf2 and len should be 16 byte (128 bit) aligned. Not being at
- * least longword aligned will fail on some architechtures. Any len mod 16
- * at the end is not swapped.
- */
-void memswap128(void *buf1, void *buf2, size_t len);
-
#endif /* _MEMORY_H_ */