summaryrefslogtreecommitdiffstats
path: root/c/src/libnetworking/pppd/magic.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/libnetworking/pppd/magic.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/c/src/libnetworking/pppd/magic.c b/c/src/libnetworking/pppd/magic.c
index 67d6b6ca90..c571ef792e 100644
--- a/c/src/libnetworking/pppd/magic.c
+++ b/c/src/libnetworking/pppd/magic.c
@@ -17,19 +17,19 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#ifndef lint
-/* static char rcsid[] = "$Id$"; */
-#endif
+#define RCSID "$Id$"
#include <stdio.h>
-#include <unistd.h>
#include <stdlib.h>
+#include <unistd.h>
#include <sys/types.h>
#include <sys/time.h>
#include "pppd.h"
#include "magic.h"
+static const char rcsid[] = RCSID;
+
extern long mrand48 __P((void));
extern void srand48 __P((long));
@@ -64,7 +64,7 @@ magic()
* Substitute procedures for those systems which don't have
* drand48 et al.
*/
-/* #include <stdlib.h> */
+
double
drand48()
{
@@ -83,4 +83,3 @@ long seedval;
{
srand((int)seedval);
}
-