diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-29 09:27:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-29 09:27:50 +0000 |
commit | be5b0fbcb25e88d0c5f7c360527679b4cd1155e0 (patch) | |
tree | da021890f897628fa98d71243a4decd746133c81 /gmon/mcount.c | |
parent | a363f8a4262fd3efb357ec6a2526dcecae3de25d (diff) | |
download | glibc-be5b0fbcb25e88d0c5f7c360527679b4cd1155e0.zip glibc-be5b0fbcb25e88d0c5f7c360527679b4cd1155e0.tar.gz glibc-be5b0fbcb25e88d0c5f7c360527679b4cd1155e0.tar.bz2 |
Use correct types for frompcindex and toindex variables.
Diffstat (limited to 'gmon/mcount.c')
-rw-r--r-- | gmon/mcount.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gmon/mcount.c b/gmon/mcount.c index f6eb229..8e54812 100644 --- a/gmon/mcount.c +++ b/gmon/mcount.c @@ -31,6 +31,7 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; #endif +#include <unistd.h> #include <sys/param.h> #include <sys/gmon.h> @@ -57,10 +58,10 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; */ _MCOUNT_DECL(frompc, selfpc) /* _mcount; may be static, inline, etc */ { - register u_short *frompcindex; + register ARCINDEX *frompcindex; register struct tostruct *top, *prevtop; register struct gmonparam *p; - register long toindex; + register ARCINDEX toindex; int i; p = &_gmonparam; |