Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/arc4random/arc4random_uniform.h')
-rw-r--r--3rdparty/arc4random/arc4random_uniform.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/3rdparty/arc4random/arc4random_uniform.h b/3rdparty/arc4random/arc4random_uniform.h
new file mode 100644
index 000000000..730f948c8
--- /dev/null
+++ b/3rdparty/arc4random/arc4random_uniform.h
@@ -0,0 +1,14 @@
+// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#ifndef MUMBLE_3RDPARTY_ARC4RANDOM_UNIFORM_H_
+#define MUMBLE_3RDPARTY_ARC4RANDOM_UNIFORM_H_
+
+#include <stdint.h>
+
+uint32_t mumble_arc4random(void);
+uint32_t mumble_arc4random_uniform(uint32_t upper_bound);
+
+#endif