mirror of
https://git.disroot.org/80486DX2-66/polonium.git
synced 2024-11-08 13:42:31 +05:30
20 lines
351 B
C
20 lines
351 B
C
#ifndef _RANDOM_SEED_H
|
|
#define _RANDOM_SEED_H
|
|
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
|
|
#include "sys_id.h"
|
|
#if defined(SYS_NT)
|
|
# include <process.h>
|
|
# include <windows.h>
|
|
#elif defined(SYS_UNIX_GENERAL)
|
|
# include <sys/types.h>
|
|
# include <unistd.h>
|
|
#endif
|
|
|
|
/* function definitions */
|
|
uint32_t mt_generate_random_seed(void);
|
|
|
|
#endif /* _RANDOM_SEED_H */
|