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:
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 480b2ec99..30b114720 100644
--- a/libgloss/i386/cygmon-gmon.c
+++ b/libgloss/i386/cygmon-gmon.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 1991, 2000 The Regents of the University of California.
+ * Copyright (c) 1991 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);
}
/*