<sys/_stdarg.h>: Fix indentation after removing __GNUCLIKE checks.

This commit is contained in:
John Baldwin 2022-04-12 10:12:13 -07:00
parent 3d6f4411e4
commit 6e3168c85d

View File

@ -41,12 +41,12 @@
typedef __va_list va_list;
#endif
#define va_start(ap, last) __builtin_va_start((ap), (last))
#define va_arg(ap, type) __builtin_va_arg((ap), type)
#define __va_copy(dest, src) __builtin_va_copy((dest), (src))
#if __ISO_C_VISIBLE >= 1999
#define va_copy(dest, src) __va_copy(dest, src)
#endif
#define va_end(ap) __builtin_va_end(ap)
#define va_start(ap, last) __builtin_va_start((ap), (last))
#define va_arg(ap, type) __builtin_va_arg((ap), type)
#define __va_copy(dest, src) __builtin_va_copy((dest), (src))
#if __ISO_C_VISIBLE >= 1999
#define va_copy(dest, src) __va_copy(dest, src)
#endif
#define va_end(ap) __builtin_va_end(ap)
#endif /* ! _SYS__STDARG_H_ */