#include <precomp.h>
#include <ntsecapi.h>
#include <internal/tls.h>
Go to the source code of this file.
◆ rand()
Definition at line 10 of file rand.c.
11{
13
14
15
16 data->random_seed =
data->random_seed * 214013 + 2531011;
18}
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
thread_data_t * msvcrt_get_thread_data(void)
◆ srand()
Definition at line 24 of file rand.c.
25{
27 data->random_seed = seed;
28}