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 <[email protected]> Committer: Henning Westerholt <[email protected]> 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); /* _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
