mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
15 lines
343 B
D
15 lines
343 B
D
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/**
|
|
* $(RED Deprecated. Use $(D core.stdc.locale) instead. This module will be
|
|
* removed in June 2017.)
|
|
*
|
|
* C's <locale.h>
|
|
* License: Public Domain
|
|
* Standards:
|
|
* ISO/IEC 9899:1999 7.11
|
|
*/
|
|
deprecated("Import core.stdc.locale instead")
|
|
module std.c.locale;
|
|
|
|
public import core.stdc.locale;
|