]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - trek/systemname.c
Remove the need for -Wno-pointer-sign. Object diffs checked.
[bsdgames-darwin.git] / trek / systemname.c
index b5e3ad761802ab4d8797518bb2b25ad313d279ac..0eabec2438612410248c713e1e39ddd547ea55c4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: systemname.c,v 1.7 2009/05/24 19:18:44 dholland Exp $  */
+/*     $NetBSD: systemname.c,v 1.9 2009/05/25 00:05:56 dholland Exp $  */
 
 /*
  * Copyright (c) 1980, 1993
 #if 0
 static char sccsid[] = "@(#)systemname.c       8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: systemname.c,v 1.7 2009/05/24 19:18:44 dholland Exp $");
+__RCSID("$NetBSD: systemname.c,v 1.9 2009/05/25 00:05:56 dholland Exp $");
 #endif
 #endif /* not lint */
 
-# include      "trek.h"
+#include <stddef.h>
+#include "trek.h"
 
 /*
 **  RETRIEVE THE STARSYSTEM NAME
@@ -65,6 +66,6 @@ systemname(const struct quad *q1)
 
        i &= Q_SYSTEM;
        if (i == 0)
-               return (0);
+               return NULL;
        return (Systemname[i]);
 }