Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
/*****************************************************************************/
|
||||
/* */
|
||||
/* stdarg.h */
|
||||
/* stdarg.h */
|
||||
/* */
|
||||
/* Variable arguments */
|
||||
/* Variable arguments */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -40,10 +40,10 @@
|
||||
|
||||
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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user