diff options
Diffstat (limited to 'llvm/runtime/GCCLibraries/libc/string.c')
-rw-r--r-- | llvm/runtime/GCCLibraries/libc/string.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/runtime/GCCLibraries/libc/string.c b/llvm/runtime/GCCLibraries/libc/string.c index 5c9625dc637..a024c3fa87e 100644 --- a/llvm/runtime/GCCLibraries/libc/string.c +++ b/llvm/runtime/GCCLibraries/libc/string.c @@ -53,7 +53,7 @@ int strcmp (const char *p1, const char *p2) { } // http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/sysdeps/generic/?cvsroot=glibc - +#if 0 typedef unsigned int op_t; #define OPSIZ 4 @@ -119,6 +119,7 @@ void *memset (void *dstpp, int c, size_t len) { return dstpp; } +#endif void *memcpy(void *dstpp, const void *srcpp, size_t len) { char *dstp = (char*)dstpp; |