18 lines
233 B
C
18 lines
233 B
C
/*
|
|
* random.h
|
|
*
|
|
* Created on: Aug 31, 2011
|
|
* Author: sears
|
|
*/
|
|
|
|
#ifndef RANDOM_H_
|
|
#define RANDOM_H_
|
|
|
|
#include <stasis/common.h>
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
uint64_t stasis_util_random64(uint64_t x);
|
|
|
|
END_C_DECLS
|
|
#endif /* RANDOM_H_ */
|