diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2014-03-03 20:49:09 +0800 |
---|---|---|
committer | Andrew Hsieh <andrewhsieh@google.com> | 2014-03-10 12:38:30 +0800 |
commit | 293624950fe14bbd43136f46496cbf983ac97fd5 (patch) | |
tree | 15580a6c200e2411aabb9b0525a6c86472658cea /9/sources/cxx-stl/llvm-libc++/libcxx/include/cstdarg | |
parent | 42f32bd625e9bd73b369f455a07c6c3aef4cdd64 (diff) | |
download | prebuilts_ndk-293624950fe14bbd43136f46496cbf983ac97fd5.zip prebuilts_ndk-293624950fe14bbd43136f46496cbf983ac97fd5.tar.gz prebuilts_ndk-293624950fe14bbd43136f46496cbf983ac97fd5.tar.bz2 |
Refresh prebuilts/ndk/9 to r9d+
Change-Id: I307e1af61e046a2598ae0cc68862635e783a549f
Diffstat (limited to '9/sources/cxx-stl/llvm-libc++/libcxx/include/cstdarg')
-rw-r--r-- | 9/sources/cxx-stl/llvm-libc++/libcxx/include/cstdarg | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/9/sources/cxx-stl/llvm-libc++/libcxx/include/cstdarg b/9/sources/cxx-stl/llvm-libc++/libcxx/include/cstdarg new file mode 100644 index 0000000..c8b6999 --- /dev/null +++ b/9/sources/cxx-stl/llvm-libc++/libcxx/include/cstdarg @@ -0,0 +1,48 @@ +// -*- C++ -*- +//===--------------------------- cstdarg ----------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef _LIBCPP_CSTDARG +#define _LIBCPP_CSTDARG + +/* + cstdarg synopsis + +Macros: + + type va_arg(va_list ap, type); + void va_copy(va_list dest, va_list src); // C99 + void va_end(va_list ap); + void va_start(va_list ap, parmN); + +namespace std +{ + +Types: + + va_list + +} // std + +*/ + +#include <__config> +#include <stdarg.h> + +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + +_LIBCPP_BEGIN_NAMESPACE_STD + +using ::va_list; + +_LIBCPP_END_NAMESPACE_STD + +#endif // _LIBCPP_CSTDARG |