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 /sysdeps/ia64/elf | |
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 'sysdeps/ia64/elf')
-rw-r--r-- | sysdeps/ia64/elf/entry.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/ia64/elf/entry.h b/sysdeps/ia64/elf/entry.h index 53ea9a2..b93e1b6 100644 --- a/sysdeps/ia64/elf/entry.h +++ b/sysdeps/ia64/elf/entry.h @@ -5,3 +5,6 @@ extern void _start (void); /* The function's entry point is stored in the first word of the function descriptor (plabel) of _start(). */ #define ENTRY_POINT (((long int *) _start)[0]) + +/* We have to provide a special declaration. */ +#define ENTRY_POINT_DECL(class) class void _start (void); |