Disabled TRAP cache of CodeQL again
[ruby.git] / internal / random.h
blob127b908e163f054ca03c8ff6acd96a9270615793
1 #ifndef INTERNAL_RANDOM_H /*-*-C-*-vi:se ft=c:*/
2 #define INTERNAL_RANDOM_H
3 /**
4 * @author Ruby developers <ruby-core@ruby-lang.org>
5 * @copyright This file is a part of the programming language Ruby.
6 * Permission is hereby granted, to either redistribute and/or
7 * modify this file, provided that the conditions mentioned in the
8 * file COPYING are met. Consult the file for details.
9 * @brief Internal header for Random.
11 #include <stddef.h> /* for size_t */
13 /* random.c */
14 int ruby_fill_random_bytes(void *, size_t, int);
15 void rb_free_default_rand_key(void);
17 #endif /* INTERNAL_RANDOM_H */