소스 검색

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