mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:52:57 +00:00
[CRT] Move rand to stdlib, where it belongs
This commit is contained in:
parent
d55f49978d
commit
43beb913da
4 changed files with 8 additions and 7 deletions
29
sdk/lib/crt/stdlib/rand_nt.c
Normal file
29
sdk/lib/crt/stdlib/rand_nt.c
Normal file
|
@ -0,0 +1,29 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#if defined(__GNUC__)
|
||||
static unsigned long long next = 0;
|
||||
#else
|
||||
static unsigned __int64 next = 0;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
int __cdecl rand(void)
|
||||
{
|
||||
#if defined(__GNUC__)
|
||||
next = next * 0x5deece66dLL + 11;
|
||||
#else
|
||||
next = next * 0x5deece66di64 + 11;
|
||||
#endif
|
||||
return (int)((next >> 16) & RAND_MAX);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
void __cdecl srand(unsigned seed)
|
||||
{
|
||||
next = seed;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue