blob: f729ee5f071b39b1428c914558732a32004ca382 [file] [log] [blame]
Jonathan Roelofs4f1561a2014-09-19 20:09:12 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_SUPPORT_NEWLIB_XLOCALE_H
11#define _LIBCPP_SUPPORT_NEWLIB_XLOCALE_H
12
13#if defined(_NEWLIB_VERSION)
14
15#include <cstdlib>
16#include <clocale>
17#include <cwctype>
18#include <ctype.h>
Ben Craigb8aea042016-02-18 17:40:16 +000019#include <support/xlocale/__nop_locale_mgmt.h>
Jonathan Roelofs4f1561a2014-09-19 20:09:12 +000020
21#ifdef __cplusplus
22extern "C" {
23#endif
24
Jonathan Roelofs4f1561a2014-09-19 20:09:12 +000025// Share implementation with Android's Bionic
26#include <support/xlocale/xlocale.h>
27
28#ifdef __cplusplus
29} // extern "C"
30#endif
31
32#endif // _NEWLIB_VERSION
33
34#endif