git: 6e3168c85db3 - main - <sys/_stdarg.h>: Fix indentation after removing __GNUCLIKE checks.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 12 Apr 2022 17:12:58 UTC
The branch main has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=6e3168c85db33529e6185e8ffb90ab30bc8bd379
commit 6e3168c85db33529e6185e8ffb90ab30bc8bd379
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2022-04-12 17:12:13 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2022-04-12 17:12:13 +0000
<sys/_stdarg.h>: Fix indentation after removing __GNUCLIKE checks.
---
sys/sys/_stdarg.h | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/sys/sys/_stdarg.h b/sys/sys/_stdarg.h
index 07f3af47fe44..f3a7d6a457b2 100644
--- a/sys/sys/_stdarg.h
+++ b/sys/sys/_stdarg.h
@@ -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_ */