aboutsummaryrefslogtreecommitdiffstats
path: root/include/random.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/random.h')
-rw-r--r--include/random.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/random.h b/include/random.h
new file mode 100644
index 0000000..6485f26
--- /dev/null
+++ b/include/random.h
@@ -0,0 +1,9 @@
+#ifndef RANDOM_H_
+#define RANDOM_H_
+
+#include <stdint.h>
+
+void random_init(void);
+uint32_t random_get(void);
+
+#endif // RANDOM_H_