diff options
author | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:03:02 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:03:02 +0000 |
commit | f138d1da5ac5e4f052ce20134fa194b881c88ea0 (patch) | |
tree | e17b62a2ed5b4593b73540bff6721214188d4bf0 /games/morse | |
parent | a16ddc2846315096f139acf53487df9761e9177a (diff) |
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'games/morse')
-rw-r--r-- | games/morse/morse.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/morse/morse.c b/games/morse/morse.c index f8d5771bbf6..c371fc63c6c 100644 --- a/games/morse/morse.c +++ b/games/morse/morse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: morse.c,v 1.10 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: morse.c,v 1.11 2003/07/10 00:03:01 david Exp $ */ /* * Copyright (c) 1988, 1993 @@ -39,12 +39,14 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)morse.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: morse.c,v 1.10 2003/06/03 03:01:40 millert Exp $"; +static char rcsid[] = "$OpenBSD: morse.c,v 1.11 2003/07/10 00:03:01 david Exp $"; #endif #endif /* not lint */ #include <ctype.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <unistd.h> static char |