Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-10-25 23:18:46 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-10-25 23:18:46 +0400
commit664252b754b47fc328bfeaf77dc8c2a82b2e2a99 (patch)
tree7f74cc52413fc5fedff40534dadd414b488f5f2c /libgloss/i386/cygmon-gmon.c
parent8dec3c152c85a68adcf6d72fb9d92989e7aca5d3 (diff)
2002-10-25 Bernd Schmidt <bernds@redhat.com>
* i386/cygmon.ld: Add entry for .gcc_except_table. 2000-10-25 Mark Salter <msalter@redhat.com> * i386/cygmon-crt0.S: Use __USER_LABEL_PREFIX__ for symbols. Always use __start for start symbol. * i386/cygmon-salib.c: Don't build __do_global_[cd]tors for AOUT. Disable file I/O extensions to make Plum Hall happy. * i386/cygmon.ld: Set __start as entry point. * i386/Makefile.in: Support IS_AOUT. * i386/configure.in: Support IS_AOUT. * i386/configure: Regenerated. * i386/cygmon-salib.c: * i386/cygmon-gmon.c (_mcount): It's _etext.
Diffstat (limited to 'libgloss/i386/cygmon-gmon.c')
-rw-r--r--libgloss/i386/cygmon-gmon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgloss/i386/cygmon-gmon.c b/libgloss/i386/cygmon-gmon.c
index 30b114720..480b2ec99 100644
--- a/libgloss/i386/cygmon-gmon.c
+++ b/libgloss/i386/cygmon-gmon.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 1991 The Regents of the University of California.
+ * Copyright (c) 1991, 2000 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -221,10 +221,10 @@ _mcount()
if (! already_setup)
{
- extern etext();
+ extern _etext();
extern _ftext();
already_setup = 1;
- monstartup(_ftext, etext);
+ monstartup(_ftext, _etext);
atexit(_mcleanup);
}
/*