]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/misc.c
Generate <>& symbolically. I'm avoiding .../dist/... directories for now.
[bsdgames-darwin.git] / sail / misc.c
index a1e91ce3529a86cb97ace46a2d9469e2cc94b0d8..91a9e6edc71f2af9c390fddf7bae5363a0e2c3b7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: misc.c,v 1.7 2001/01/01 21:57:38 jwise Exp $   */
+/*     $NetBSD: misc.c,v 1.12 2001/02/05 01:10:10 christos Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)misc.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: misc.c,v 1.7 2001/01/01 21:57:38 jwise Exp $");
+__RCSID("$NetBSD: misc.c,v 1.12 2001/02/05 01:10:10 christos Exp $");
 #endif
 #endif /* not lint */
 
-#include <fcntl.h>
-#include <stdlib.h>
+#include <ctype.h>
+#include <stdio.h>
 #include <unistd.h>
+#include <string.h>
 #include "extern.h"
 #include "pathnames.h"
 
 #define distance(x,y) (abs(x) >= abs(y) ? abs(x) + abs(y)/2 : abs(y) + abs(x)/2)
 
+static int     angle(int, int);
+
 /* XXX */
 int
 range(struct ship *from, struct ship *to)
@@ -105,7 +108,7 @@ closestenemy(struct ship *from, int side, int anyship)
        return closest;
 }
 
-int
+static int
 angle(int dr, int dc)
 {
        int i;