From 93f8a2e834eed69aff7ef3be8c2baba14bab0658 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 18 Sep 2009 23:07:26 +0200 Subject: convert // comments to /**/; remove empty #if/#endif pairs. no code changes Signed-off-by: Denys Vlasenko --- libc/string/i386/memchr.c | 2 +- libc/string/i386/memmove.c | 2 +- libc/string/i386/strchrnul.c | 2 +- libc/string/i386/strncat.c | 2 +- libc/string/i386/strncpy.c | 2 +- libc/string/i386/strnlen.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'libc/string/i386') diff --git a/libc/string/i386/memchr.c b/libc/string/i386/memchr.c index c2fc44b4a..1960f6ba4 100644 --- a/libc/string/i386/memchr.c +++ b/libc/string/i386/memchr.c @@ -33,7 +33,7 @@ #include #undef memchr -//#define memchr TESTING +/*#define memchr TESTING*/ void *memchr(const void *s, int c, size_t count) { void *edi; diff --git a/libc/string/i386/memmove.c b/libc/string/i386/memmove.c index 72d8002a5..0ec8016a5 100644 --- a/libc/string/i386/memmove.c +++ b/libc/string/i386/memmove.c @@ -33,7 +33,7 @@ #include #undef memmove -//#define memmove TESTING +/*#define memmove TESTING*/ void *memmove(void *dest, const void *src, size_t n) { int eax, ecx, esi, edi; diff --git a/libc/string/i386/strchrnul.c b/libc/string/i386/strchrnul.c index c4da2b587..d48427214 100644 --- a/libc/string/i386/strchrnul.c +++ b/libc/string/i386/strchrnul.c @@ -9,7 +9,7 @@ #include #undef strchrnul -//#define strchrnul TESTING +/*#define strchrnul TESTING*/ char *strchrnul(const char *s, int c) { int esi; diff --git a/libc/string/i386/strncat.c b/libc/string/i386/strncat.c index 640b0d213..12f0a302b 100644 --- a/libc/string/i386/strncat.c +++ b/libc/string/i386/strncat.c @@ -33,7 +33,7 @@ #include #undef strncat -//#define strncat TESTING +/*#define strncat TESTING*/ char *strncat(char * dest, const char * src, size_t count) { int esi, edi, eax, ecx, edx; diff --git a/libc/string/i386/strncpy.c b/libc/string/i386/strncpy.c index e1c7f1dcf..99d104b0d 100644 --- a/libc/string/i386/strncpy.c +++ b/libc/string/i386/strncpy.c @@ -33,7 +33,7 @@ #include #undef strncpy -//#define strncpy TESTING +/*#define strncpy TESTING*/ char *strncpy(char * dest, const char * src, size_t count) { int esi, edi, ecx, eax; diff --git a/libc/string/i386/strnlen.c b/libc/string/i386/strnlen.c index 3abde48e2..f58f698d1 100644 --- a/libc/string/i386/strnlen.c +++ b/libc/string/i386/strnlen.c @@ -35,7 +35,7 @@ #ifdef __USE_GNU #undef strnlen -//#define strnlen TESTING +/*#define strnlen TESTING*/ size_t strnlen(const char *s, size_t count) { int edx; -- cgit v1.2.3