]> git.sur5r.net Git - cc65/commitdiff
The va_fix macro is no longer needed
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 23 Mar 2001 19:19:02 +0000 (19:19 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 23 Mar 2001 19:19:02 +0000 (19:19 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@653 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/stdarg.h

index 6a52b67319aeb0c771f96af556d0302948259444..fe0fa9f07aa2aed1b9a6d4d427fe61445e13f497 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2000 Ullrich von Bassewitz                                       */
+/* (C) 1998-2001 Ullrich von Bassewitz                                       */
 /*               Wacholderweg 14                                             */
 /*               D-70597 Stuttgart                                           */
 /* EMail:        uz@musoftware.de                                            */
@@ -45,10 +45,10 @@ typedef unsigned char* va_list;
 #define va_copy(dest, src)     ((dest)=(src))
 #define va_end(ap)
 
-/* This is only valid *before* the first call to va_arg. It will also work
- * only for int sized parameters.
- */
+/* PLEASE NOTE: The old va_fix macro is no longer needed. Just access the
+ * parameters by name.
 #define va_fix(ap, offs)               (*(unsigned*)(ap+(__fixargs__-2*offs)))
+ */