summaryrefslogtreecommitdiff
path: root/src/til.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/til.c')
-rw-r--r--src/til.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/til.c b/src/til.c
index 81a300e..1c2c2fe 100644
--- a/src/til.c
+++ b/src/til.c
@@ -80,14 +80,6 @@ static const til_module_t *modules[] = {
/* initialize rototiller (create rendering threads) */
int til_init(void)
{
- /* Various modules seed srand(), just do it here so they don't need to.
- * At some point in the future this might become undesirable, if reproducible
- * pseudo-randomized output is actually desirable. But that should probably be
- * achieved using rand_r() anyways, since modules can't prevent others from playing
- * with srand().
- */
- srand(time(NULL) + getpid());
-
if (!(til_threads = til_threads_create()))
return -errno;
© All Rights Reserved