From 03bd4aeb4f6c9f6f3f6e8f50869221e165628a10 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 16 May 2003 08:57:09 +0000 Subject: 2003-05-16 Ralf Corsepius * pppd/magic.c: Remove *rand48. * pppd/chap.c: Remove prototypes of *rand48. --- cpukit/pppd/chap.c | 4 +--- cpukit/pppd/magic.c | 27 --------------------------- 2 files changed, 1 insertion(+), 30 deletions(-) (limited to 'cpukit/pppd') diff --git a/cpukit/pppd/chap.c b/cpukit/pppd/chap.c index 5609ec8bae..c1a17e5ab3 100644 --- a/cpukit/pppd/chap.c +++ b/cpukit/pppd/chap.c @@ -41,6 +41,7 @@ #include #include +#include /* drand48, srand48 */ #include #include @@ -115,9 +116,6 @@ static void ChapSendChallenge __P((chap_state *)); static void ChapSendResponse __P((chap_state *)); static void ChapGenChallenge __P((chap_state *)); -extern double drand48 __P((void)); -extern void srand48 __P((long)); - /* * ChapInit - Initialize a CHAP unit. */ diff --git a/cpukit/pppd/magic.c b/cpukit/pppd/magic.c index c571ef792e..3013e08f07 100644 --- a/cpukit/pppd/magic.c +++ b/cpukit/pppd/magic.c @@ -30,9 +30,6 @@ static const char rcsid[] = RCSID; -extern long mrand48 __P((void)); -extern void srand48 __P((long)); - /* * magic_init - Initialize the magic number generator. * @@ -59,27 +56,3 @@ magic() { return (u_int32_t) mrand48(); } - -/* - * Substitute procedures for those systems which don't have - * drand48 et al. - */ - -double -drand48() -{ - return (double)rand() / (double)0x7fffffffL; /* 2**31-1 */ -} - -long -mrand48() -{ - return rand(); -} - -void -srand48(seedval) -long seedval; -{ - srand((int)seedval); -} -- cgit v1.2.3