diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-07-06 10:40:45 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-07-06 10:40:45 -0500 |
commit | 420287e2da5312f5b6f1e1771fd8b379d13b6307 (patch) | |
tree | e14b9345cac75be12dc4f98abed62d7642fa79b2 | |
parent | db5dae20793d5696c5c3e905d2c467c2ff0a23a1 (diff) | |
download | gcompat-random.tar.gz gcompat-random.tar.bz2 gcompat-random.tar.xz gcompat-random.zip |
random: initial work at a new modulerandom
This is a _dangerously_ naive implementation. Do not ship.
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | libgcompat/random.c | 11 |
2 files changed, 12 insertions, 0 deletions
@@ -17,6 +17,7 @@ LIBGCOMPAT_SRC = \ libgcompat/netdb.c \ libgcompat/pthread.c \ libgcompat/pwd.c \ + libgcompat/random.c \ libgcompat/readlink.c \ libgcompat/realpath.c \ libgcompat/resolv.c \ diff --git a/libgcompat/random.c b/libgcompat/random.c new file mode 100644 index 0000000..5fb9e3f --- /dev/null +++ b/libgcompat/random.c @@ -0,0 +1,11 @@ +#include <inttypes.h> +#include <stdlib.h> + +int initstate_r(unsigned int seed, char *statebuf, size_t statelen, void *buf) { + return 0; +} + +int random_r(struct random_data *buf, int32_t *result) { + *result = random(); + return 0; +} |