diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-20 01:34:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-20 01:34:52 +0000 |
commit | bd7510cc6b7ea453c1bc1c12949174f6324a6bdc (patch) | |
tree | 60cc6c9ef264264b208b3b70a7a2f54fc986fde4 /libc/string/i386/memmove.c | |
parent | a0da3cfbbff226c7792be30e2bb277386e7cd086 (diff) |
string/i386/strncpy: faster i386 version (same code size), testing code
string/i386/*: formatiing and commentary tidying up
Diffstat (limited to 'libc/string/i386/memmove.c')
-rw-r--r-- | libc/string/i386/memmove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/i386/memmove.c b/libc/string/i386/memmove.c index cd746e804..72d8002a5 100644 --- a/libc/string/i386/memmove.c +++ b/libc/string/i386/memmove.c @@ -57,7 +57,7 @@ void *memmove(void *dest, const void *src, size_t n) #ifndef memmove libc_hidden_def(memmove) #else -/* Uncomment TESTING, gcc -D__USE_GNU -m32 -Os memmove.c -o memmove +/* Uncomment TESTING, gcc -D_GNU_SOURCE -m32 -Os memmove.c -o memmove * and run ./memmove */ int main() |