summaryrefslogtreecommitdiffstats
path: root/sw/z80/libc/include/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'sw/z80/libc/include/string.h')
-rw-r--r--sw/z80/libc/include/string.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sw/z80/libc/include/string.h b/sw/z80/libc/include/string.h
new file mode 100644
index 0000000..f224c87
--- /dev/null
+++ b/sw/z80/libc/include/string.h
@@ -0,0 +1,8 @@
+#ifndef __STRING_H__
+#define __STRING_H__
+
+#include "types.h"
+
+void *memcpy(void *dest, const void *src, size_t n);
+
+#endif