diff options
author | mestre <mestre@cvs.openbsd.org> | 2016-01-04 17:33:25 +0000 |
---|---|---|
committer | mestre <mestre@cvs.openbsd.org> | 2016-01-04 17:33:25 +0000 |
commit | 96c0ba3936c91323465ddc1086d94655a49726b0 (patch) | |
tree | 4a05f8414046a356458034ec2a525718b567fad3 /games/pom | |
parent | a2eb8154d629d90444f3800ce2cdb939e4f1f2d3 (diff) |
More cleanup and sorting on header section
OK tb@ and he also pointed out that for consistency with rest of the tree we
should include termios.h instead of sys/ttydefaults.h, where applicable
Diffstat (limited to 'games/pom')
-rw-r--r-- | games/pom/pom.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/games/pom/pom.c b/games/pom/pom.c index dc03aa5ce63..4beb4174ab0 100644 --- a/games/pom/pom.c +++ b/games/pom/pom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pom.c,v 1.19 2015/12/26 00:26:39 mestre Exp $ */ +/* $OpenBSD: pom.c,v 1.20 2016/01/04 17:33:24 mestre Exp $ */ /* $NetBSD: pom.c,v 1.6 1996/02/06 22:47:29 jtc Exp $ */ /* @@ -44,14 +44,12 @@ * */ -#include <sys/time.h> -#include <sys/types.h> #include <ctype.h> +#include <err.h> +#include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <math.h> -#include <err.h> #include <unistd.h> #ifndef M_PI |