#ifndef KIT_SECURE_RANDOM_H
#define KIT_SECURE_RANDOM_H

#include "types.h"

#ifdef __cplusplus
extern "C" {
#endif

s32 kit_secure_random(i64 size, void *data);

#ifdef __cplusplus
}
#endif

#ifndef KIT_DISABLE_SHORT_NAMES
#  define secure_random kit_secure_random
#endif

#endif