diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-25 22:15:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-25 22:15:17 +0000 |
commit | ca13ce66be1bb4d218c89b1680e7aa177a3275cd (patch) | |
tree | e3789e80df94ee38392971b6863f7d9d027aba2b /csu/gmon-start.c | |
parent | 6ef77f193e623585ccc8af005df956c5e10e01ca (diff) | |
download | glibc-ca13ce66be1bb4d218c89b1680e7aa177a3275cd.zip glibc-ca13ce66be1bb4d218c89b1680e7aa177a3275cd.tar.gz glibc-ca13ce66be1bb4d218c89b1680e7aa177a3275cd.tar.bz2 |
Update.
2001-07-25 Ulrich Drepper <drepper@redhat.com>
* csu/gmon-start.c: Use ENTRY_POINT_DECL is defined instead of a
declaration using ENTRY_POINT.
* sysdeps/ia64/elf/entry.h (ENTRY_POINT_DECL): New definition.
2001-07-25 H.J. Lu <hjl@gnu.org>
* csu/gmon-start.c: Include <entry.h>
(_start): Replaced with ENTRY_POINT.
Diffstat (limited to 'csu/gmon-start.c')
-rw-r--r-- | csu/gmon-start.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/csu/gmon-start.c b/csu/gmon-start.c index dce4688..4df3a13 100644 --- a/csu/gmon-start.c +++ b/csu/gmon-start.c @@ -1,5 +1,5 @@ /* Code to enable profiling at program startup. - Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -28,7 +28,12 @@ as the external functions since we want the addresses of those labels. Taking the address of a function may have different meanings on different platforms. */ -extern void ENTRY_POINT, etext; +#ifdef ENTRY_POINT_DECL +ENTRY_POINT_DECL(extern) +#else +extern void ENTRY_POINT; +#endif +extern void etext; #ifndef HAVE_INITFINI /* This function gets called at startup by the normal constructor |