mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00

This includes deprecating std.c.*, which apparently was marked as scheduled for deprecation in 2.068 but never actually deprecated (though it looks like it was previously removed from the documentation build, since it doesn't show up on dlang.org).
16 lines
389 B
D
16 lines
389 B
D
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/**
|
|
* $(RED Deprecated. Use $(D core.stdc.math) instead. This module will be
|
|
* removed in June 2017.)
|
|
*
|
|
* C's <math.h>
|
|
* Authors: Walter Bright, Digital Mars, www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCMath
|
|
*/
|
|
deprecated("Import core.stdc.math instead")
|
|
module std.c.math;
|
|
|
|
public import core.stdc.math;
|