diff options
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-08-14 13:39:29 +0100 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-08-22 10:26:05 +0100 |
commit | 2fb88cb2e9050d4cda97f8de1e8f000a28599869 (patch) | |
tree | 6c3ac166bf1f1d8b4fef14c2bc601d74f996f26a /include/lib/libc/stdarg.h | |
parent | 7c0ff9c40ceeacf239ec9a3465be0477594cf898 (diff) |
libc: Cleanup SCC headers
Only leave the parts relevant to the Trusted Firmware.
Change-Id: I0444c16e402f6c1629211d03bf6cb32ca3dbcf59
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'include/lib/libc/stdarg.h')
-rw-r--r-- | include/lib/libc/stdarg.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/lib/libc/stdarg.h b/include/lib/libc/stdarg.h index 3c20788b..e260b9b5 100644 --- a/include/lib/libc/stdarg.h +++ b/include/lib/libc/stdarg.h @@ -3,9 +3,13 @@ * * SPDX-License-Identifier: BSD-3-Clause */ +/* + * Portions copyright (c) 2018, ARM Limited and Contributors. + * All rights reserved. + */ -#ifndef _STDARG_H -#define _STDARG_H +#ifndef STDARG_H +#define STDARG_H #define va_list __builtin_va_list #define va_start(ap, last) __builtin_va_start(ap, last) @@ -13,4 +17,4 @@ #define va_copy(to, from) __builtin_va_copy(to, from) #define va_arg(to, type) __builtin_va_arg(to, type) -#endif +#endif /* STDARG_H */ |