Преглед изворни кода

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

Henning Westerholt пре 14 година
родитељ
комит
6aef49b836
1 измењених фајлова са 2 додато и 2 уклоњено
  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);
 
 
 /*