summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 @@
26 26
27void memset16(void *dst, int val, size_t len); 27void memset16(void *dst, int val, size_t len);
28 28
29/**
30 * memswap128
31 *
32 * Exchanges the contents of two buffers.
33 * For maximum efficiency, this function performs no aligning of addresses
34 * and buf1, buf2 and len should be 16 byte (128 bit) aligned. Not being at
35 * least longword aligned will fail on some architechtures. Any len mod 16
36 * at the end is not swapped.
37 */
38void memswap128(void *buf1, void *buf2, size_t len);
39
40#endif /* _MEMORY_H_ */ 29#endif /* _MEMORY_H_ */