diff options
Diffstat (limited to 'math/test/rtest/random.h')
| -rw-r--r-- | math/test/rtest/random.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/math/test/rtest/random.h b/math/test/rtest/random.h new file mode 100644 index 000000000000..b4b22df82a3d --- /dev/null +++ b/math/test/rtest/random.h @@ -0,0 +1,12 @@ +/* + * random.h - header for random.c + * + * Copyright (c) 2009-2019, Arm Limited. + * SPDX-License-Identifier: MIT + */ + +#include "types.h" + +uint32 random32(void); +uint32 random_upto(uint32 limit); +uint32 random_upto_biased(uint32 limit, int bias); |
