]> git.sur5r.net Git - cc65/blobdiff - src/cc65/stackptr.c
In case of parse errors for structs, don't just set the type of the result to
[cc65] / src / cc65 / stackptr.c
index 0b1bbc242c40e34e000967aa9332da08368bd6dc..9313db366816ec7b20295dc375e78a759774e950 100644 (file)
@@ -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);
 }
 
 
 
-                           
+