Browse Source

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

Henning Westerholt 14 years ago
parent
commit
6aef49b836
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rand/isaac/rand.h

+ 2 - 2
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);
 
 
 /*