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/pom | |
parent | a16ddc2846315096f139acf53487df9761e9177a (diff) |
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'games/pom')
-rw-r--r-- | games/pom/pom.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/pom/pom.c b/games/pom/pom.c index 5dbc4a90e8f..185b71f2cbe 100644 --- a/games/pom/pom.c +++ b/games/pom/pom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pom.c,v 1.9 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: pom.c,v 1.10 2003/07/10 00:03:01 david Exp $ */ /* $NetBSD: pom.c,v 1.6 1996/02/06 22:47:29 jtc Exp $ */ /* @@ -42,7 +42,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)pom.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: pom.c,v 1.9 2003/06/03 03:01:40 millert Exp $"; +static char rcsid[] = "$OpenBSD: pom.c,v 1.10 2003/07/10 00:03:01 david Exp $"; #endif #endif /* not lint */ @@ -62,6 +62,7 @@ static char rcsid[] = "$OpenBSD: pom.c,v 1.9 2003/06/03 03:01:40 millert Exp $"; #include <sys/types.h> #include <ctype.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <math.h> #include <err.h> |