xref: /reactos/sdk/include/c++/clocale (revision d5b576b2)
1// C++ forwarding C locale header.
2
3#pragma once
4
5#include <locale.h>
6
7// Get rid of those macros defined in <locale.h> in lieu of real functions.
8#undef setlocale
9#undef localeconv
10
11namespace std
12{
13  using ::lconv;
14  using ::setlocale;
15  using ::localeconv;
16}
17