aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_random_std_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-generic/include/odp_random_std_internal.h')
-rw-r--r--platform/linux-generic/include/odp_random_std_internal.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/platform/linux-generic/include/odp_random_std_internal.h b/platform/linux-generic/include/odp_random_std_internal.h
new file mode 100644
index 000000000..22583089c
--- /dev/null
+++ b/platform/linux-generic/include/odp_random_std_internal.h
@@ -0,0 +1,22 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright (c) 2020 Nokia
+ */
+
+#ifndef ODP_RANDOM_STD_INTERNAL_H_
+#define ODP_RANDOM_STD_INTERNAL_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+
+int32_t _odp_random_std_test_data(uint8_t *buf, uint32_t len, uint64_t *seed);
+int32_t _odp_random_std_data(uint8_t *buf, uint32_t len);
+int _odp_random_std_init_local(void);
+int _odp_random_std_term_local(void);
+
+#ifdef __cplusplus
+}
+#endif
+#endif /* ODP_RANDOM_STD_INTERNAL_H_ */