testing stuff
[retrocrawl] / src / amiga / libc / string.h
diff --git a/src/amiga/libc/string.h b/src/amiga/libc/string.h
new file mode 100644 (file)
index 0000000..a2e4c74
--- /dev/null
@@ -0,0 +1,9 @@
+#ifndef AMIGA_LIBC_STRING_H_
+#define AMIGA_LIBC_STRING_H_
+
+#include <stdlib.h>
+
+void memcpy(void *dest, const void *src, size_t n);
+void memset(void *dest, int c, size_t n);
+
+#endif /* AMIGA_LIBC_STRING_H_ */