diff options
author | Andreas Schwab <schwab@suse.de> | 2014-07-31 12:46:14 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2014-07-31 17:05:19 +0200 |
commit | 6c9578a24b5c4182d1c475a32a147478bc757bf3 (patch) | |
tree | e054a75fa04b39e43997e01593d955bfe39e418f /rt | |
parent | 05f3633da4f9df870d04dd77336e793746e57ed4 (diff) | |
download | glibc-6c9578a24b5c4182d1c475a32a147478bc757bf3.tar.gz |
Fix -Wundef warning for HAVE_IFUNC
Diffstat (limited to 'rt')
-rw-r--r-- | rt/clock-compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/clock-compat.c b/rt/clock-compat.c index 1ccc2965e2..0a3ae40434 100644 --- a/rt/clock-compat.c +++ b/rt/clock-compat.c @@ -27,7 +27,7 @@ #include <time.h> -#ifdef HAVE_IFUNC +#if HAVE_IFUNC # define COMPAT_REDIRECT(name, proto, arglist) \ __typeof (name) *name##_ifunc (void) asm (#name); \ __typeof (name) *name##_ifunc (void) \ |