aboutsummaryrefslogtreecommitdiffstats
path: root/random.h
diff options
context:
space:
mode:
Diffstat (limited to 'random.h')
-rw-r--r--random.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/random.h b/random.h
new file mode 100644
index 0000000..04271a4
--- /dev/null
+++ b/random.h
@@ -0,0 +1,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