mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 19:29:43 +00:00

* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
16 lines
277 B
Text
16 lines
277 B
Text
// 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;
|
|
}
|