a05bee544a
The NDK self-test issue64679-prctl failed to build because by default clang3.6 builds in C11 mode, but the ifdef in the file 'uchar.h' hid the required char16_t and char32_t declarations based on the GCC version, which is declared as 4 by clang. The ifdef is changed so that it is based on C version rather than a compiler version. This way it is compatible with gcc 4, gcc 5 and clang which are actually the only used toolchains. See also: b.android.com/177609 Change-Id: I78c4bdc681c6f8a31b92dbe8ffe35e84ef2eda36 Signed-off-by: Egor Kochetov <egor.kochetov@intel.com>
58 lines
2.1 KiB
C
58 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef _UCHAR_H_
|
|
#define _UCHAR_H_
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <wchar.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#if __STDC_VERSION__ >= 201112L && !defined(__cplusplus)
|
|
typedef __CHAR16_TYPE__ char16_t;
|
|
typedef __CHAR32_TYPE__ char32_t;
|
|
#endif
|
|
|
|
#define __STD_UTF_16__ 1
|
|
#define __STD_UTF_32__ 1
|
|
|
|
size_t c16rtomb(char* __restrict, char16_t, mbstate_t* __restrict);
|
|
size_t c32rtomb(char* __restrict, char32_t, mbstate_t* __restrict);
|
|
size_t mbrtoc16(char16_t* __restrict,
|
|
const char* __restrict,
|
|
size_t,
|
|
mbstate_t* __restrict);
|
|
size_t mbrtoc32(char32_t* __restrict,
|
|
const char* __restrict,
|
|
size_t,
|
|
mbstate_t* __restrict);
|
|
|
|
__END_DECLS
|
|
|
|
#endif /* _UCHAR_H_ */
|