blob: 66ab940b1669b8f1d30de0662b2c449aebbbfbed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Copyright 2016 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef __CROS_EC_STDARG_H__
#define __CROS_EC_STDARG_H__
/* We use -nostdinc -ffreestanding to keep host system include files
* from contaminating our build.
* Unfortunately this also gets us rid of the _compiler_ includes, like
* stdarg.h. To work around the issue, we define varargs directly here.
*/
#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;
#else
#include_next <stdarg.h>
#endif
#endif /* __CROS_EC_STDARG_H__ */
|