aboutsummaryrefslogtreecommitdiff
path: root/shell/random.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/random.h')
-rw-r--r--shell/random.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/random.h b/shell/random.h
index e22a2e88b..08563402c 100644
--- a/shell/random.h
+++ b/shell/random.h
@@ -6,6 +6,10 @@
6 * 6 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2, see file LICENSE in this tarball for details.
8 */ 8 */
9#ifndef SHELL_RANDOM_H
10#define SHELL_RANDOM_H 1
11
12PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
9 13
10typedef struct random_t { 14typedef struct random_t {
11 /* Random number generators */ 15 /* Random number generators */
@@ -23,3 +27,7 @@ typedef struct random_t {
23 ((rnd)->galois_LFSR = 0) 27 ((rnd)->galois_LFSR = 0)
24 28
25uint32_t next_random(random_t *rnd) FAST_FUNC; 29uint32_t next_random(random_t *rnd) FAST_FUNC;
30
31POP_SAVED_FUNCTION_VISIBILITY
32
33#endif