浏览代码

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