X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fstackptr.c;h=9313db366816ec7b20295dc375e78a759774e950;hb=ce931b85be8c41d30510685c6b92fbe74e12aec9;hp=0b1bbc242c40e34e000967aa9332da08368bd6dc;hpb=9df7321d90332eeb24b3d72639577f801f30a010;p=cc65 diff --git a/src/cc65/stackptr.c b/src/cc65/stackptr.c index 0b1bbc242..9313db366 100644 --- a/src/cc65/stackptr.c +++ b/src/cc65/stackptr.c @@ -6,7 +6,7 @@ /* */ /* */ /* */ -/* (C) 2004 Ullrich von Bassewitz */ +/* (C) 2004-2006 Ullrich von Bassewitz */ /* Römerstraße 52 */ /* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ @@ -55,7 +55,7 @@ int StackPtr = 0; -void SP_Push (const type* T) +void SP_Push (const Type* T) /* Adjust the stackpointer for a push of an argument of the given type */ { StackPtr -= SizeOf (T); @@ -63,12 +63,12 @@ void SP_Push (const type* T) -void SP_Pop (const type* T) +void SP_Pop (const Type* T) /* Adjust the stackpointer for a pop of an argument of the given type */ -{ +{ StackPtr += SizeOf (T); } - +