1 /* 2 * Copyright 2022, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _LOCALE_IMPL_H 6 #define _LOCALE_IMPL_H 7 8 #include <locale.h> 9 10 #define __nl_langinfo_l nl_langinfo_l 11 12 locale_t __current_locale_t(); 13 locale_t __posix_locale_t(); 14 #define CURRENT_LOCALE (__current_locale_t()) 15 #define C_LOCALE (__posix_locale_t()) 16 17 #endif 18