[sr-dev] git:master: rand: fix warnings: call to function ‘ .. ’ without a real prototype from gcc 4 .5

Henning Westerholt henning.westerholt at 1und1.de
Thu Jun 23 23:58:41 CEST 2011


Module: sip-router
Branch: master
Commit: 6aef49b836f75d180a555973a03cf9e981e9994d
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6aef49b836f75d180a555973a03cf9e981e9994d

Author: Henning Westerholt <henning.westerholt at 1und1.de>
Committer: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Thu Jun 23 23:58:13 2011 +0200

rand: fix warnings: call to function ‘..’ without a real prototype from gcc 4.5

---

 rand/isaac/rand.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/rand/isaac/rand.h b/rand/isaac/rand.h
index 7361705..018496f 100644
--- a/rand/isaac/rand.h
+++ b/rand/isaac/rand.h
@@ -36,9 +36,9 @@ typedef  struct randctx  randctx;
  If (flag==TRUE), then use the contents of randrsl[0..RANDSIZ-1] as the seed.
 ------------------------------------------------------------------------------
 */
-void randinit(/*_ randctx *r, word flag _*/);
+void randinit(randctx *r, word flag);
 
-void isaac(/*_ randctx *r _*/);
+void isaac(randctx *r);
 
 
 /*




More information about the sr-dev mailing list