mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
14 lines
349 B
D
14 lines
349 B
D
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/**
|
|
* $(RED Deprecated. Use $(D core.stdc.time) instead. This module will be
|
|
* removed in June 2017.)
|
|
*
|
|
* C's <time.h>
|
|
* Authors: Walter Bright, Digital Mars, www.digitalmars.com
|
|
* License: Public Domain
|
|
*/
|
|
deprecated("Import core.stdc.time instead")
|
|
module std.c.time;
|
|
|
|
public import core.stdc.time;
|