]> git.sur5r.net Git - cc65/blobdiff - include/stdarg.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / include / stdarg.h
index 4fd822b2a3ba43a1d75f58bc03c9f60a01257ac7..adf73483ce8bbfd397e92d69a4c08ec8713bc1f5 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                stdarg.h                                  */
+/*                                 stdarg.h                                  */
 /*                                                                           */
-/*                           Variable arguments                             */
+/*                            Variable arguments                             */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 typedef unsigned char* va_list;
 
-#define va_start(ap, fix)              ap = ((va_list)&(fix))
-#define va_arg(ap,type)                (*(type*)(ap -= ((sizeof (type) + 1) & ~1)))
+#define va_start(ap, fix)       ap = ((va_list)&(fix))
+#define va_arg(ap,type)         (*(type*)(ap -= ((sizeof (type) + 1) & ~1)))
 #if __CC65_STD__ >= __CC65_STD_C99__
-#define va_copy(dest, src)     ((dest)=(src))
+#define va_copy(dest, src)      ((dest)=(src))
 #endif
 #define va_end(ap)