diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2016-09-11 14:21:19 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2016-09-11 14:21:19 +0000 |
commit | aa9d078ea90a862b6c1f1fdf0fc59595e5c7c7c9 (patch) | |
tree | 6b97d5916f0e2d14d5c447a30356fc0df93561e3 /games/monop | |
parent | 5ee88dd45e02f684f73307fef9a9c1e1bbabcf20 (diff) |
Callers of time(3) should #include <time.h>.
ok deraadt
Diffstat (limited to 'games/monop')
-rw-r--r-- | games/monop/execute.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/monop/execute.c b/games/monop/execute.c index cdc25ae8158..4bea091af72 100644 --- a/games/monop/execute.c +++ b/games/monop/execute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: execute.c,v 1.13 2016/01/08 18:20:33 mestre Exp $ */ +/* $OpenBSD: execute.c,v 1.14 2016/09/11 14:21:18 tb Exp $ */ /* $NetBSD: execute.c,v 1.3 1995/03/23 08:34:38 cgd Exp $ */ /* @@ -36,6 +36,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include "monop.ext" |