X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=NeXT%2Frandom.h;fp=NeXT%2Frandom.h;h=0000000000000000000000000000000000000000;hp=787368d6220380def19774ce5d1035e310d26bcb;hb=b5c0cf380b11e37f580e6f2affcb78d5ccedade0;hpb=c178bf94c8aa2e30d3934dde8b5371d05ad41f7e diff --git a/NeXT/random.h b/NeXT/random.h deleted file mode 100644 index 787368d..0000000 --- a/NeXT/random.h +++ /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);