]> git.pond.sub.org Git - empserver/blobdiff - src/lib/gen/scthash.c
Fix trailing whitespace
[empserver] / src / lib / gen / scthash.c
index 108cb010a5aa8296721b84fd8972ca950693ddf3..f13246b24405a69349a96ca0d9d3bb123367c091 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  scthash.c: Create a hash function based on the sector x-y mod table size
- * 
+ *
  *  Known contributors to this file:
  *     Dave Pare, 1986
  */
 
-#include "gen.h"
+#include <config.h>
+
+#include "prototypes.h"
 
 int
-scthash(register int x, register int y, int tsize)
+scthash(int x, int y, int tsize)
 {
     if (x < 0)
        x = -x;
     if (y < 0)
        y = -y;
-    return ((x * 10 + y) % tsize);
+    return (x * 10 + y) % tsize;
 }