diff options
Diffstat (limited to 'sysdeps/ia64')
-rw-r--r-- | sysdeps/ia64/Makefile | 1 | ||||
-rw-r--r-- | sysdeps/ia64/hp-timing.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/ia64/Makefile b/sysdeps/ia64/Makefile index 997a227f73..a9848b7ffc 100644 --- a/sysdeps/ia64/Makefile +++ b/sysdeps/ia64/Makefile @@ -8,6 +8,7 @@ endif ifeq ($(subdir), csu) CPPFLAGS-start.S = -D__ASSEMBLY__ sysdep_routines += hp-timing +static-only-routines += hp-timing endif ifeq ($(subdir),elf) diff --git a/sysdeps/ia64/hp-timing.c b/sysdeps/ia64/hp-timing.c index 6509e22a08..ae8680f9a7 100644 --- a/sysdeps/ia64/hp-timing.c +++ b/sysdeps/ia64/hp-timing.c @@ -1,5 +1,5 @@ /* Support for high precision, low overhead timing functions. IA-64 version. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 2001. @@ -21,4 +21,4 @@ #include <hp-timing.h> /* We have to define the variable for the overhead. */ -hp_timing_t __libc_hp_timing_overhead; +hp_timing_t _dl_hp_timing_overhead; |