diff options
Diffstat (limited to 'libgloss/i386/cygmon-gmon.c')
-rw-r--r-- | libgloss/i386/cygmon-gmon.c | 6 |
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); } /* |