• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // -*- C++ -*-
2 //===-------------------- support/android/wchar_support.c ------------------===//
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 LLVM_LIBCXX_SUPPORT_ANDROID_XLOCALE_H
12 #define LLVM_LIBCXX_SUPPORT_ANDROID_XLOCALE_H
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 typedef struct locale_struct* locale_t;
19 
20 struct locale_struct {
21     void* dummy;
22 };
23 
24 #ifdef __cplusplus
25 }  // extern "C"
26 #endif
27 
28 #endif  // LLVM_LIBCXX_SUPPORT_ANDROID_XLOCALE_H
29