]> git.ozlabs.org Git - ppp.git/blobdiff - NeXT/random.h
Update from Steve Perkins
[ppp.git] / NeXT / random.h
diff --git a/NeXT/random.h b/NeXT/random.h
deleted file mode 100644 (file)
index 787368d..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * Because the standard library random number
- * functions are not availble at the kernel level
- * I wrote this simple random number generator.
- *
- * It uses the multiplicative congruential method.
- * See pg 263 of Banks and Carson "Discrete-Event
- * System Simulation".
- *
- */
-
-void srand(unsigned i);
-unsigned rand(void);
-float frand(void);