blob: 3346da80f7d199433caa03d4d0453653e42122c6 [file] [log] [blame]
#ifndef LLVM_LIBCXX_SUPPORT_ANDROID_NL_TYPES_H
#define LLVM_LIBCXX_SUPPORT_ANDROID_NL_TYPES_H
#define NL_SETD 1
#define NL_CAT_LOCALE 1
#ifdef __cplusplus
extern "C" {
#endif
typedef void* nl_catd;
typedef int nl_item;
nl_catd catopen(const char*, int);
char* catgets(nl_catd, int, int, const char*);
int catclose(nl_catd);
#ifdef __cplusplus
} // extern "C"
#endif
#endif /* LLVM_LIBCXX_SUPPORT_ANDROID_NL_TYPES_H */