summaryrefslogtreecommitdiff
path: root/bcc/function.c
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1998-02-01 11:26:21 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:40:14 +0200
commit48f0b3eb836162d41622cedc1eb5f5168168fb8e (patch)
treec53156383d4682a0a296f6611575dbc1d64d1881 /bcc/function.c
parent48798bf2eb93ec3b99720ac2e16093441156653d (diff)
downloaddev86-48f0b3eb836162d41622cedc1eb5f5168168fb8e.tar.gz
Import Dev86src-0.13.5.tar.gzv0.13.5
Diffstat (limited to 'bcc/function.c')
-rw-r--r--bcc/function.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bcc/function.c b/bcc/function.c
index 5d30a40..85bf007 100644
--- a/bcc/function.c
+++ b/bcc/function.c
@@ -198,7 +198,7 @@ PUBLIC void loadretexpression()
PUBLIC void listo(target, lastargsp)
struct symstruct *target;
-offset_t lastargsp;
+offset_T lastargsp;
{
extend(target);
push(target);
@@ -364,11 +364,11 @@ PUBLIC void reslocals()
PUBLIC void ret()
{
#ifdef FRAMEPOINTER
- offset_t newsp;
+ offset_T newsp;
if (framep != 0)
{
- newsp = -(offset_t) func1saveregsize;
+ newsp = -(offset_T) func1saveregsize;
if (switchnow != NULL || newsp - sp >= 0x80)
changesp(newsp, TRUE);
else
@@ -403,7 +403,7 @@ PUBLIC void ret()
#else
if (sp != 0)
{
- modstk(-(offset_t) func1saveregsize);
+ modstk(-(offset_T) func1saveregsize);
poplist(callee1mask);
}
outreturn();