summaryrefslogtreecommitdiff
path: root/kit/secure_random.h
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-11-17 05:24:04 +0100
committerMitya Selivanov <automainint@guattari.tech>2024-11-17 05:24:04 +0100
commitd5a727a062e4d727491f4e7f047269d60a93a8cf (patch)
tree565aec155ab056f1bef8ddc7dc78d52e65aa76b7 /kit/secure_random.h
parent4ba961dcbf60f7c12f53f46baa261757e15d5931 (diff)
downloadsaw-d5a727a062e4d727491f4e7f047269d60a93a8cf.zip
Remove lots of dependencies
Diffstat (limited to 'kit/secure_random.h')
-rw-r--r--kit/secure_random.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/kit/secure_random.h b/kit/secure_random.h
deleted file mode 100644
index 435fe88..0000000
--- a/kit/secure_random.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef KIT_SECURE_RANDOM_H
-#define KIT_SECURE_RANDOM_H
-
-#include "types.h"
-#include "status.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-s32 kit_secure_random(i64 size, void *data);
-
-#ifdef __cplusplus
-}
-#endif
-
-#define secure_random kit_secure_random
-
-#endif