blob: c1ce956b0f1c75d663b27d4a0fc8e992df5e8e36 [file] [log] [blame]
George Landerda55ef92015-11-19 12:05:06 +00001/*
Szabolcs Nagy1b945972018-05-14 14:46:40 +01002 * random.h - header for random.c
George Landerda55ef92015-11-19 12:05:06 +00003 *
Szabolcs Nagy11253b02018-11-12 11:10:57 +00004 * Copyright (c) 2009-2018, Arm Limited.
5 * SPDX-License-Identifier: MIT
George Landerda55ef92015-11-19 12:05:06 +00006 */
7
8#include "types.h"
9
10uint32 random32(void);
11uint32 random_upto(uint32 limit);
12uint32 random_upto_biased(uint32 limit, int bias);