diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-06 18:50:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-06 18:50:39 +0000 |
commit | 0f64621783b3f46a4851826b9f4284e3c9dbeb61 (patch) | |
tree | 352fcb09d9321309ec519dc3144147a24bd64bda /games/gomoku/gomoku.h | |
parent | 997f28507be542389b846c45806474af6bbfdedc (diff) |
2451 lines of strdup/sprintf/strcpy whacking. mostly ok'd by pjanzen
already, but he may have later changes to make still.
Diffstat (limited to 'games/gomoku/gomoku.h')
-rw-r--r-- | games/gomoku/gomoku.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/gomoku/gomoku.h b/games/gomoku/gomoku.h index a19f098c6a9..bdff4c2c85f 100644 --- a/games/gomoku/gomoku.h +++ b/games/gomoku/gomoku.h @@ -1,4 +1,4 @@ -/* $OpenBSD: gomoku.h,v 1.6 2002/02/17 19:42:20 millert Exp $ */ +/* $OpenBSD: gomoku.h,v 1.7 2003/04/06 18:50:37 deraadt Exp $ */ /* * Copyright (c) 1994 * The Regents of the University of California. All rights reserved. @@ -254,7 +254,7 @@ struct ovlp_info { }; extern char *letters; -extern char fmtbuf[]; +extern char fmtbuf[128]; extern char pdir[]; extern int dd[4]; @@ -305,7 +305,7 @@ void markcombo(struct combostr *); #endif void panic(char *); int pickmove(int); -void printcombo(struct combostr *, char *); +void printcombo(struct combostr *, char *, size_t); void qlog(char *); void quit(int); int readinput(FILE *); |