]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/lostsub.c
Update copyright notice.
[empserver] / src / lib / subs / lostsub.c
index 76a6b9239de849d54116be40a06540731b0209e8..3e932c213cde8552116016223343d75a16735690 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
 
 #include <config.h>
 
-#include "misc.h"
-#include "player.h"
 #include "file.h"
-#include "land.h"
-#include "ship.h"
-#include "nsc.h"
 #include "lost.h"
-#include "prototypes.h"
 
-static int findlost(char, natid, short, coord, coord, int);
+static int findlost(short, natid, short, coord, coord, int);
 
 void
-makelost(char type, natid owner, short int id, coord x, coord y)
+makelost(short type, natid owner, short id, coord x, coord y)
 {
     struct loststr lost;
     int n;
@@ -70,7 +64,7 @@ makelost(char type, natid owner, short int id, coord x, coord y)
 }
 
 void
-makenotlost(char type, natid owner, short int id, coord x, coord y)
+makenotlost(short type, natid owner, short id, coord x, coord y)
 {
     struct loststr lost;
     int n;
@@ -93,7 +87,7 @@ makenotlost(char type, natid owner, short int id, coord x, coord y)
  * Else return -1.
  */
 static int
-findlost(char type, natid owner, short int id, coord x, coord y, int free)
+findlost(short type, natid owner, short id, coord x, coord y, int free)
 {
     struct loststr lost;
     int n;