aboutsummaryrefslogtreecommitdiffstats
path: root/test/kvx/prng/prng.h
blob: 6abdb45a6697789d8fe294802626945393f5e549 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __PRNG_H__
#define __PRNG_H__

#include "types.h"

void srand(uint64_t seed);

uint64_t randlong(void);

#endif // __PRNG_H__