lib/libc/string0.c: Remove include of std.h, replace with string.h.

Much more portable this way.
pull/1186/merge
Damien George 2015-04-18 14:27:55 +01:00
rodzic 1c9a499135
commit f53a8e712f
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -25,7 +25,7 @@
*/
#include <stdint.h>
#include "std.h"
#include <string.h>
#define likely(x) __builtin_expect((x), 1)
@ -102,10 +102,12 @@ void *memset(void *s, int c, size_t n) {
return s;
}
int memcmp(const char *s1, const char *s2, size_t n) {
int memcmp(const void *s1, const void *s2, size_t n) {
const uint8_t *s1_8 = s1;
const uint8_t *s2_8 = s2;
while (n--) {
char c1 = *s1++;
char c2 = *s2++;
char c1 = *s1_8++;
char c2 = *s2_8++;
if (c1 < c2) return -1;
else if (c1 > c2) return 1;
}