Interface of tmplocal() changed: second parameter is a long now
This commit is contained in:
@@ -49,11 +49,11 @@ offset aoff(ap,n)
|
||||
|
||||
offset tmplocal(p,size)
|
||||
proc_p p;
|
||||
int size;
|
||||
offset size;
|
||||
{
|
||||
/* Allocate a new local variable in the stack frame of p */
|
||||
|
||||
p->p_localbytes += (offset) size;
|
||||
p->p_localbytes += size;
|
||||
return -(p->p_localbytes);
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ extern offset aoff(); /* (arg_p list; int n)
|
||||
* n'th argument in the list (this argument
|
||||
* must have type ARGOFF). Start counting at 0.
|
||||
*/
|
||||
extern offset tmplocal(); /* (proc_p p, int size)
|
||||
extern offset tmplocal(); /* (proc_p p, offset size)
|
||||
* Allocate a new local variable in the
|
||||
* stack frame of p.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user