blob: 482e23433585242b8d2165a4753244a4b72f767f [file] [log] [blame]
Marshall Clowb38f8f02014-07-10 15:20:28 +00001// -*- C++ -*-
2//===------------------- support/android/locale_bionic.h ------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_SUPPORT_ANDROID_LOCALE_BIONIC_H
12#define _LIBCPP_SUPPORT_ANDROID_LOCALE_BIONIC_H
13
Dan Albertc9917092016-09-19 18:00:45 +000014#if defined(__BIONIC__)
Marshall Clowb38f8f02014-07-10 15:20:28 +000015
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#include <stdlib.h>
21#include <xlocale.h>
22
Marshall Clowb38f8f02014-07-10 15:20:28 +000023#ifdef __cplusplus
24}
25#endif
Jonathan Roelofs4f1561a2014-09-19 20:09:12 +000026
Ben Craig57b8b1f2016-05-20 12:58:41 +000027#include <support/xlocale/__posix_l_fallback.h>
28#include <support/xlocale/__strtonum_fallback.h>
Jonathan Roelofs4f1561a2014-09-19 20:09:12 +000029
Dan Albertc9917092016-09-19 18:00:45 +000030#endif // defined(__BIONIC__)
Marshall Clowb38f8f02014-07-10 15:20:28 +000031#endif // _LIBCPP_SUPPORT_ANDROID_LOCALE_BIONIC_H