diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-07-03 01:28:45 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-07-03 01:49:43 +0530 |
commit | 99f8dc922033821edcc13f9f8360e9fda40dfcff (patch) | |
tree | 50c567b703247e62945dbe084c754c149f38ba9e /string | |
parent | bc8ea38590070604006399e42469087e943fc8ec (diff) | |
download | glibc-99f8dc922033821edcc13f9f8360e9fda40dfcff.tar glibc-99f8dc922033821edcc13f9f8360e9fda40dfcff.tar.gz glibc-99f8dc922033821edcc13f9f8360e9fda40dfcff.tar.bz2 glibc-99f8dc922033821edcc13f9f8360e9fda40dfcff.zip |
Fix -Wundef warning on PAGE_COPY_THRESHOLD
The PAGE_COPY_THRESHOLD macro is meant to be overridden by
architecture-specific pagecopy.h, but it is currently done only by
mach; all other architectures use the default. Check to see if the
macro is defined in addition to whether it is set to a non-zero value.
Diffstat (limited to 'string')
-rw-r--r-- | string/memcpy.c | 1 | ||||
-rw-r--r-- | string/memmove.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/string/memcpy.c b/string/memcpy.c index c19bad3b67..517f9ee883 100644 --- a/string/memcpy.c +++ b/string/memcpy.c @@ -20,7 +20,6 @@ #include <string.h> #include <memcopy.h> -#include <pagecopy.h> #undef memcpy diff --git a/string/memmove.c b/string/memmove.c index 3373401721..22140efc35 100644 --- a/string/memmove.c +++ b/string/memmove.c @@ -20,7 +20,6 @@ #include <string.h> #include <memcopy.h> -#include <pagecopy.h> /* All this is so that bcopy.c can #include this file after defining some things. */ |