diff options
author | asami <asami@FreeBSD.org> | 1995-09-23 09:44:11 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-09-23 09:44:11 +0000 |
commit | fedd317dfd528248b646848a09356bb7665a601a (patch) | |
tree | baa161cb14ff1f2da4d564c664fa09ac14507276 /games | |
parent | a1185a0f27f062cfcbf7235a8d1982b2a6fcbe0f (diff) | |
download | FreeBSD-src-fedd317dfd528248b646848a09356bb7665a601a.zip FreeBSD-src-fedd317dfd528248b646848a09356bb7665a601a.tar.gz |
Prototype atof() so that the -speed option works. Closes bin/733.
Submitted by: candy@fct.kgc.co.jp (Toshihiro Kanda)
Diffstat (limited to 'games')
-rw-r--r-- | games/x11/xneko/xneko.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/x11/xneko/xneko.c b/games/x11/xneko/xneko.c index 563f641..7f6615e 100644 --- a/games/x11/xneko/xneko.c +++ b/games/x11/xneko/xneko.c @@ -139,6 +139,9 @@ static char sccsid[] = "@(#)xneko.c 8.1 (Berkeley) 5/31/93"; #include <stdio.h> +#include <stdlib.h> +#include <string.h> + #include <signal.h> #include <math.h> #include <sys/time.h> @@ -146,7 +149,7 @@ static char sccsid[] = "@(#)xneko.c 8.1 (Berkeley) 5/31/93"; #ifndef lint static char - rcsid[] = "$Header: /home/ncvs/src/games/x11/xneko/xneko.c,v 1.1.1.1 1994/09/04 04:02:16 jkh Exp $"; + rcsid[] = "$Header: /home/ncvs/src/games/x11/xneko/xneko.c,v 1.2 1995/05/30 03:37:35 rgrimes Exp $"; static char WriterMessage[] = "xneko: Programmed by Masayuki Koba, 1990"; #endif |