diff options
author | mestre <mestre@cvs.openbsd.org> | 2016-01-07 14:30:33 +0000 |
---|---|---|
committer | mestre <mestre@cvs.openbsd.org> | 2016-01-07 14:30:33 +0000 |
commit | ccfb46488ffb8c7f63a58ea30e483d2fa7b553a3 (patch) | |
tree | 561f36949b4699544827731708fc2381c6a7c778 /games/trek/torped.c | |
parent | c451e889ac885e7fb2c07358e6700500c6202f40 (diff) |
Remove unnecessary headers and sort the remaining alphabetically
OK tb@
Diffstat (limited to 'games/trek/torped.c')
-rw-r--r-- | games/trek/torped.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/games/trek/torped.c b/games/trek/torped.c index 1285df7a3ba..3c9682e20f9 100644 --- a/games/trek/torped.c +++ b/games/trek/torped.c @@ -1,4 +1,4 @@ -/* $OpenBSD: torped.c,v 1.8 2009/10/27 23:59:27 deraadt Exp $ */ +/* $OpenBSD: torped.c,v 1.9 2016/01/07 14:30:32 mestre Exp $ */ /* $NetBSD: torped.c,v 1.3 1995/04/22 10:59:34 cgd Exp $ */ /* @@ -30,11 +30,12 @@ * SUCH DAMAGE. */ +#include <math.h> #include <stdio.h> #include <stdlib.h> -#include <math.h> -#include "trek.h" + #include "getpar.h" +#include "trek.h" static int randcourse(int); |