]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - trek/win.c
Don't give special privileges to uid 13107.
[bsdgames-darwin.git] / trek / win.c
index dc1f7c649baaa4f80ea02baefa8a860f92f21fdc..70d1b9a296b7f0a8644f0d5cb8220268225e724e 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: win.c,v 1.11 2009/05/24 23:00:46 dholland Exp $        */
+
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
-static char sccsid[] = "@(#)win.c      5.5 (Berkeley) 6/26/90";
+#if 0
+static char sccsid[] = "@(#)win.c      8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: win.c,v 1.11 2009/05/24 23:00:46 dholland Exp $");
+#endif
 #endif /* not lint */
 
-# include      "trek.h"
-# include      "getpar.h"
-# include      <setjmp.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <setjmp.h>
+#include "trek.h"
+#include "getpar.h"
 
 /*
 **  Signal game won
@@ -52,13 +57,13 @@ static char sccsid[] = "@(#)win.c   5.5 (Berkeley) 6/26/90";
 **     pretty off the wall.
 */
 
-win()
+extern jmp_buf env;
+
+void
+win(void)
 {
-       long                    s;
-       extern jmp_buf          env;
-       extern long             score();
-       extern struct cvntab    Skitab[];
-       register struct cvntab  *p;
+       long            s;
+       const struct cvntab *p;
 
        sleep(1);
        printf("\nCongratulations, you have saved the Federation\n");
@@ -68,14 +73,13 @@ win()
        s = score();
 
        /* decide if she gets a promotion */
-       if (Game.helps == 0 && Game.killb == 0 && Game.killinhab == 0 && 5 * Game.kills + Game.deaths < 100 &&
-                       s >= 1000 && Ship.ship == ENTERPRISE)
-       {
+       if (Game.helps == 0 && Game.killb == 0 && Game.killinhab == 0 &&
+           5 * Game.kills + Game.deaths < 100 &&
+           s >= 1000 && Ship.ship == ENTERPRISE) {
                printf("In fact, you are promoted one step in rank,\n");
-               if (Game.skill >= 6)
+               if (Game.skill >= 6) {
                        printf("to the exalted rank of Commodore Emeritus\n");
-               else
-               {
+               } else {
                        p = &Skitab[Game.skill - 1];
                        printf("from %s%s ", p->abrev, p->full);
                        p++;