diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2004-06-04 00:58:19 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2004-06-04 00:58:19 +0000 |
commit | d8e392d837c4baf425a5cf350cc1624cb538b20f (patch) | |
tree | 63d316623f79d8709993546b59d2db4c0665bbaa | |
parent | 0f912ecd4527ed19744ce8e733a74914c8732a41 (diff) | |
download | xine-lib-d8e392d837c4baf425a5cf350cc1624cb538b20f.tar.gz xine-lib-d8e392d837c4baf425a5cf350cc1624cb538b20f.tar.bz2 |
Remove GNUism.
CVS patchset: 6636
CVS date: 2004/06/04 00:58:19
-rw-r--r-- | src/xine-utils/memcpy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index 041e12ff2..e49398f48 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -25,7 +25,7 @@ * Miguel Freitas split the #ifdefs into several specialized functions that * are benchmarked at runtime by xine. Some original comments from Nick * have been preserved documenting some MMX/SSE oddities. - * Also added kernel memcpy function that seems faster than glibc one. + * Also added kernel memcpy function that seems faster than libc one. * */ @@ -394,7 +394,7 @@ static struct { } memcpy_method[] = { { NULL, NULL, 0, 0 }, - { "glibc memcpy()", memcpy, 0, 0 }, + { "libc memcpy()", memcpy, 0, 0 }, #if defined(ARCH_X86) && !defined(_MSC_VER) { "linux kernel memcpy()", linux_kernel_memcpy, 0, 0 }, { "MMX optimized memcpy()", mmx_memcpy, 0, MM_MMX }, @@ -464,7 +464,7 @@ void xine_probe_fast_memcpy(xine_t *xine) int i, j, best; int config_flags = -1; static char *memcpy_methods[] = { - "probe", "glibc", + "probe", "libc", #if defined(ARCH_X86) && !defined(_MSC_VER) "kernel", "mmx", "mmxext", "sse", #endif |