mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
17 lines
261 B
Plaintext
17 lines
261 B
Plaintext
// C++ forwarding C locale header.
|
|
|
|
#pragma once
|
|
|
|
#include <locale.h>
|
|
|
|
// Get rid of those macros defined in <locale.h> in lieu of real functions.
|
|
#undef setlocale
|
|
#undef localeconv
|
|
|
|
namespace std
|
|
{
|
|
using ::lconv;
|
|
using ::setlocale;
|
|
using ::localeconv;
|
|
}
|