diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-10-30 21:34:49 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-10-30 21:34:49 -0400 |
commit | c306f4eab68ed5c084f993499a323cc98b480574 (patch) | |
tree | 05501c837d67d81a36fa157ee67f029b1f0e684d /src/shared/util.h | |
parent | 25268b958a8d5cd703b2cd442004cbbee96043e0 (diff) |
util: unify how we see srand()
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 9550aa19f9..f57a73cec6 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -192,6 +192,7 @@ bool ignore_file(const char *filename) _pure_; int dev_urandom(void *p, size_t n); void random_bytes(void *p, size_t n); +void initialize_srand(void); /* For basic lookup tables with strictly enumerated entries */ #define __DEFINE_STRING_TABLE_LOOKUP(name,type,scope) \ |