mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-01 13:14:02 +00:00
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>
16 lines
286 B
C
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 */
|