summaryrefslogtreecommitdiff
path: root/src/prng/srandom.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-06-23 18:02:23 -0400
committerRich Felker <dalias@aerifal.cx>2011-06-23 18:02:23 -0400
commitc7ce1b20d2f37f97f9cfcd57cb4fb4c7cd66a3a0 (patch)
tree77a4dae07e3fd48098566d013a2c332053a1b265 /src/prng/srandom.c
parentd19adeec52ee2e5f9524d306576cfd6bfc4a031a (diff)
downloadmusl-c7ce1b20d2f37f97f9cfcd57cb4fb4c7cd66a3a0.tar.gz
initial commit of prng implementation by Szabolcs Nagy
Diffstat (limited to 'src/prng/srandom.c')
-rw-r--r--src/prng/srandom.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/prng/srandom.c b/src/prng/srandom.c
deleted file mode 100644
index 77f4dcbd..00000000
--- a/src/prng/srandom.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <stdlib.h>
-
-/* FIXME */
-
-void srandom(unsigned seed)
-{
- return srand(seed);
-}