summaryrefslogtreecommitdiff
path: root/libc/string/i386
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/i386')
-rw-r--r--libc/string/i386/memchr.c2
-rw-r--r--libc/string/i386/memmove.c2
-rw-r--r--libc/string/i386/strchrnul.c2
-rw-r--r--libc/string/i386/strncat.c2
-rw-r--r--libc/string/i386/strncpy.c2
-rw-r--r--libc/string/i386/strnlen.c2
6 files changed, 6 insertions, 6 deletions
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 <string.h>
#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 <string.h>
#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 <string.h>
#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 <string.h>
#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 <string.h>
#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;