]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hunt/huntd/pathname.c
avoid unnecessary floating point ops
[bsdgames-darwin.git] / hunt / huntd / pathname.c
index b95d617d5692e71e616ac64c9e29d830ccfd9210..e0016c55411f995c512f3038d61d0a82f68fc151 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pathname.c,v 1.4 2008/01/28 03:23:29 dholland Exp $    */
+/*     $NetBSD: pathname.c,v 1.5 2009/07/04 04:29:55 dholland Exp $    */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: pathname.c,v 1.4 2008/01/28 03:23:29 dholland Exp $");
+__RCSID("$NetBSD: pathname.c,v 1.5 2009/07/04 04:29:55 dholland Exp $");
 #endif /* not lint */
 
 /*
 #endif /* not lint */
 
 /*
@@ -41,26 +41,26 @@ __RCSID("$NetBSD: pathname.c,v 1.4 2008/01/28 03:23:29 dholland Exp $");
  * range reserved for privileged sockets.
  */
 
  * range reserved for privileged sockets.
  */
 
-# include      <sys/types.h>
+#include <sys/types.h>
 
 
-# ifdef DEBUG
+#ifdef DEBUG
 
 
-char   *Driver =       "/home/socr/a/conrad/games/src/hunt/huntd.dbg";
-#  ifdef INTERNET
-u_short        Test_port =     ('h' << 8) | 't';
-#  else
-char   *Sock_name =    "/tmp/hunt";
-char   *Stat_name =    "/tmp/hunt.stats";
-#  endif
+char *Driver = "/home/socr/a/conrad/games/src/hunt/huntd.dbg";
+#ifdef INTERNET
+u_short Test_port = ('h' << 8) | 't';
+#else
+char *Sock_name = "/tmp/hunt";
+char *Stat_name = "/tmp/hunt.stats";
+#endif
 
 
-# else
+#else
 
 
-const char *Driver =   HUNTD;
-#  ifdef INTERNET
-u_short        Test_port =     ('h' << 8) | 't';
-#  else
-char   *Sock_name =    "/tmp/hunt";
-char   *Stat_name =    "/tmp/hunt.stats";
-#  endif
+const char *Driver = HUNTD;
+#ifdef INTERNET
+u_short Test_port = ('h' << 8) | 't';
+#else
+char *Sock_name = "/tmp/hunt";
+char *Stat_name = "/tmp/hunt.stats";
+#endif
 
 
-# endif
+#endif