]> git.sur5r.net Git - cc65/blobdiff - src/cc65/stackptr.h
Fixed two compiler warnings.
[cc65] / src / cc65 / stackptr.h
index 88e1735df289d89ed31ae494cd32b465480c55e2..51d6e878a3811717c9b7177f52421099d043732d 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                                                 */
 
 
 
+/* cc65 */
+#include "datatype.h"
+
+
+
 /*****************************************************************************/
 /*                                  Data                                    */
 /*****************************************************************************/
@@ -55,6 +60,14 @@ extern int StackPtr;
 
 
 
+void SP_Push (const Type* T);
+/* Adjust the stackpointer for a push of an argument of the given type */
+
+void SP_Pop (const Type* T);
+/* Adjust the stackpointer for a pop of an argument of the given type */
+
+
+
 /* End of stackptr.h */
 
 #endif