diff options
author | obrien <obrien@FreeBSD.org> | 2002-01-28 19:02:34 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-01-28 19:02:34 +0000 |
commit | 60e24208f00dcdc9640abc42d7e29024739d569e (patch) | |
tree | 2c5fc3d8a4c2ea1667562d8862b0dcf756738ea9 /lib/csu/common | |
parent | 474da9b45d9edd361da51fb51f02b4a277d7e463 (diff) | |
download | FreeBSD-src-60e24208f00dcdc9640abc42d7e29024739d569e.zip FreeBSD-src-60e24208f00dcdc9640abc42d7e29024739d569e.tar.gz |
GC code that moved to crtbrand.c.
Diffstat (limited to 'lib/csu/common')
-rw-r--r-- | lib/csu/common/crtbegin.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/csu/common/crtbegin.c b/lib/csu/common/crtbegin.c index a2d5909..ec50ecd 100644 --- a/lib/csu/common/crtbegin.c +++ b/lib/csu/common/crtbegin.c @@ -27,10 +27,6 @@ #include <sys/param.h> -#define ABI_VENDOR "FreeBSD" -#define ABI_SECTION ".note.ABI-tag" -#define ABI_NOTETYPE 1 - typedef void (*fptr)(void); static fptr ctor_list[1] __attribute__((section(".ctors"))) = { (fptr) -1 }; |