summaryrefslogtreecommitdiff
path: root/builtin/stdarg.h
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/stdarg.h')
-rw-r--r--builtin/stdarg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/builtin/stdarg.h b/builtin/stdarg.h
index 66ab940b16..5bf0aa8aa2 100644
--- a/builtin/stdarg.h
+++ b/builtin/stdarg.h
@@ -1,4 +1,4 @@
-/* Copyright 2016 The Chromium OS Authors. All rights reserved.
+/* Copyright 2016 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -13,10 +13,10 @@
*/
#ifdef __GNUC__
-#define va_start(v, l) __builtin_va_start(v, l)
-#define va_end(v) __builtin_va_end(v)
-#define va_arg(v, l) __builtin_va_arg(v, l)
-typedef __builtin_va_list va_list;
+#define va_start(v, l) __builtin_va_start(v, l)
+#define va_end(v) __builtin_va_end(v)
+#define va_arg(v, l) __builtin_va_arg(v, l)
+typedef __builtin_va_list va_list;
#else
#include_next <stdarg.h>
#endif