diff options
author | tb <tb@cvs.openbsd.org> | 2016-01-08 13:40:06 +0000 |
---|---|---|
committer | tb <tb@cvs.openbsd.org> | 2016-01-08 13:40:06 +0000 |
commit | ec93a54243f48ca266a213a866557f62eb190ca8 (patch) | |
tree | 44b3eaab20e708a1e744cc34c806b188d2f3dcbf /games/atc/update.c | |
parent | 74ebd824977841c8ec7f3262ceacd614d0b42c03 (diff) |
add missing 'void'
ok mestre@
Diffstat (limited to 'games/atc/update.c')
-rw-r--r-- | games/atc/update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/atc/update.c b/games/atc/update.c index bfd539fbeec..4c6cd6b6b2a 100644 --- a/games/atc/update.c +++ b/games/atc/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.18 2015/12/31 16:50:29 mestre Exp $ */ +/* $OpenBSD: update.c,v 1.19 2016/01/08 13:40:05 tb Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -54,7 +54,7 @@ setseed(const char *seed) } uint32_t -atcrandom() +atcrandom(void) { if (seeded) return random(); |