diff options
author | Stefan Bellon <[email protected]> | 2002-08-03 18:35:16 +0000 |
---|---|---|
committer | Stefan Bellon <[email protected]> | 2002-08-03 18:35:16 +0000 |
commit | 582f0d5d98a303ac8ed2d87d3afc42929f0fdd2d (patch) | |
tree | fdf1ffdc95ccb3bf1369169d1c2f84a91b7657d6 /cipher/random.c | |
parent | The big extension module removal. (diff) | |
download | gnupg-582f0d5d98a303ac8ed2d87d3afc42929f0fdd2d.tar.gz gnupg-582f0d5d98a303ac8ed2d87d3afc42929f0fdd2d.zip |
RISC OS changes due to dynload removal
Diffstat (limited to '')
-rw-r--r-- | cipher/random.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cipher/random.c b/cipher/random.c index 1d7bf8a93..d7ebf5787 100644 --- a/cipher/random.c +++ b/cipher/random.c @@ -141,6 +141,9 @@ getfnc_gather_random (void))(void (*)(const void*, size_t, int), int, #ifdef USE_RNDW32 return rndw32_gather_random; #endif +#ifdef USE_RNDRISCOS + return rndriscos_gather_random; +#endif return NULL; } |