From 39a1066cab493ece48c6e692513d1311b7e27c44 Mon Sep 17 00:00:00 2001 From: dholland Date: Wed, 12 Aug 2009 08:44:45 +0000 Subject: sprinkle static --- rogue/random.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'rogue/random.c') diff --git a/rogue/random.c b/rogue/random.c index e527903c..f119c0f9 100644 --- a/rogue/random.c +++ b/rogue/random.c @@ -1,4 +1,4 @@ -/* $NetBSD: random.c,v 1.7 2008/01/14 03:50:02 dholland Exp $ */ +/* $NetBSD: random.c,v 1.8 2009/08/12 08:44:45 dholland Exp $ */ /* * Copyright (c) 1988, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)random.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: random.c,v 1.7 2008/01/14 03:50:02 dholland Exp $"); +__RCSID("$NetBSD: random.c,v 1.8 2009/08/12 08:44:45 dholland Exp $"); #endif #endif /* not lint */ @@ -73,6 +73,8 @@ static int rand_deg = 31; static int rand_sep = 3; static long *end_ptr = &rntb[32]; +static long rrandom(void); + void srrandom(int x) { @@ -91,7 +93,7 @@ srrandom(int x) } } -long +static long rrandom(void) { long i; -- cgit v1.2.3