mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 15:40:36 +03:00
phobos 0.76
This commit is contained in:
parent
fa1bc52ba2
commit
35a12fec2f
51 changed files with 761 additions and 183 deletions
|
@ -2,6 +2,7 @@
|
|||
// random.d
|
||||
// www.digitalmars.com
|
||||
|
||||
module std.random;
|
||||
|
||||
// Segments of the code in this file Copyright (c) 1997 by Rick Booth
|
||||
// From "Inner Loops" by Rick Booth, Addison-Wesley
|
||||
|
@ -13,7 +14,7 @@ version (Win32)
|
|||
|
||||
version (linux)
|
||||
{
|
||||
import std.c.linux.linux;
|
||||
private import std.c.linux.linux;
|
||||
}
|
||||
|
||||
/* ===================== Random ========================= */
|
||||
|
@ -94,7 +95,6 @@ static this()
|
|||
rand_seed((uint) s, (uint)(s >> 32));
|
||||
}
|
||||
|
||||
//import std.c.stdio;
|
||||
|
||||
unittest
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue