diff options
Diffstat (limited to 'tests/helpers/c/prng.h')
| -rw-r--r-- | tests/helpers/c/prng.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/helpers/c/prng.h b/tests/helpers/c/prng.h index 7b2ab924e4..23f702b07f 100644 --- a/tests/helpers/c/prng.h +++ b/tests/helpers/c/prng.h @@ -26,12 +26,10 @@ struct prng; -struct prng* prng_new(unsigned long long seed); -int prng_rand(struct prng*); -const char * prng_fuzz(struct prng*, - const char *string, - const char *charset, - unsigned int operations); +struct prng *prng_new(unsigned long long seed); +int prng_rand(struct prng *); +const char *prng_fuzz(struct prng *, const char *string, const char *charset, + unsigned int operations); void prng_free(struct prng *); #endif |
