diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-10 08:53:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-10 08:53:13 +0000 |
commit | 65ec8015ed7c028e8a29eca6533e8f396d2f3372 (patch) | |
tree | 9bfadfab20af8300b23ee46fa22e242cc8c5f21a /games/cribbage/io.c | |
parent | e4dc71b9fd4a33715b07f881315d244cf5790dce (diff) |
Rename use of some builtins that makes gcc4 warn.
ok millert
Diffstat (limited to 'games/cribbage/io.c')
-rw-r--r-- | games/cribbage/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/cribbage/io.c b/games/cribbage/io.c index 32d61613a2c..b335f9707b2 100644 --- a/games/cribbage/io.c +++ b/games/cribbage/io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: io.c,v 1.12 2009/10/27 23:59:24 deraadt Exp $ */ +/* $OpenBSD: io.c,v 1.13 2010/05/10 08:53:12 nicm Exp $ */ /* $NetBSD: io.c,v 1.9 1997/07/09 06:25:47 phil Exp $ */ /*- @@ -559,7 +559,7 @@ getline(void) } void -rint(int signo) +rintsig(int signo) { bye(); exit(1); |