diff options
Diffstat (limited to 'tools/include/nolibc/string.h')
| -rw-r--r-- | tools/include/nolibc/string.h | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/include/nolibc/string.h b/tools/include/nolibc/string.h index ad97c0d522b8..fffdaf6ff467 100644 --- a/tools/include/nolibc/string.h +++ b/tools/include/nolibc/string.h @@ -88,8 +88,11 @@ void *memset(void *dst, int b, size_t len)  {  	char *p = dst; -	while (len--) +	while (len--) { +		/* prevent gcc from recognizing memset() here */ +		asm volatile("");  		*(p++) = b; +	}  	return dst;  } @@ -285,4 +288,7 @@ char *strrchr(const char *s, int c)  	return (char *)ret;  } +/* make sure to include all global symbols */ +#include "nolibc.h" +  #endif /* _NOLIBC_STRING_H */  |