From 3a0018aba38f2d3c073a659b9b443245ffe349cb Mon Sep 17 00:00:00 2001 From: Andre Date: Sun, 28 Jan 2007 22:31:49 +0100 Subject: [PATCH] make another function of command.c static --- command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.c b/command.c index 38e04bd6..7bde617e 100644 --- a/command.c +++ b/command.c @@ -727,7 +727,7 @@ static struct server_command *parse_cmd(const char *cmdstr) return get_cmd_ptr(buf, NULL); } -long int para_rand(long unsigned max) +static long int para_rand(long unsigned max) { return (long int) ((max + 0.0) * (random() / (RAND_MAX + 1.0))); } -- 2.30.2