Move memory handling into string, do not use compiler_builtins for memory handling

This commit is contained in:
Jeremy Soller
2018-03-27 21:28:48 -06:00
parent 79d05d7eda
commit dabd8dc6a2
8 changed files with 68 additions and 55 deletions
-9
View File
@@ -1,9 +0,0 @@
#ifndef _BITS_STRING_H
#define _BITS_STRING_H
int memcmp(const void *s1, const void *s2, size_t n);
void *memcpy(void *dest, const void *src, size_t n);
void *memmove(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);
#endif /* _BITS_STRING_H */