aboutsummaryrefslogtreecommitdiffstats
path: root/random.h
blob: 04271a46f14a15818eaff05d0e3a480260d39108 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
 */

#ifndef __RANDOM_H__
#define __RANDOM_H__

#include <stdint.h>

uint64_t random_bounded(uint64_t bound);

#endif