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

#ifndef __RANDOM_H__
#define __RANDOM_H__

#include <stdint.h>

uint64_t random_u64();
uint64_t random_bounded(uint64_t bound);

#endif