acrn-hypervisor/hypervisor/include/lib/stdarg.h
David B. Kinder f4122d99c5 license: Replace license text with SPDX tag
Replace the BSD-3-Clause boiler plate license text with an SPDX tag.

Fixes: #189

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
2018-06-01 10:43:06 +08:00

16 lines
286 B
C

/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef STDARG_H
#define STDARG_H
#include <types.h>
#define va_start(x, y) __builtin_va_start((x), (y))
#define va_end(x) __builtin_va_end(x)
#endif /* STDARG_H */