]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - trek/setwarp.c
Remove extra blank line in copyright.
[bsdgames-darwin.git] / trek / setwarp.c
index 075f536adf96f15488b5a71fc7f1370c23e3e184..56ec60f49523c641d219e66f1e5779beb78773d9 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: setwarp.c,v 1.5 1999/09/08 21:45:33 jsm 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
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
-/*static char sccsid[] = "from: @(#)setwarp.c  5.4 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: setwarp.c,v 1.2 1993/08/01 18:49:59 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)setwarp.c  8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: setwarp.c,v 1.5 1999/09/08 21:45:33 jsm Exp $");
+#endif
 #endif /* not lint */
 
-# include      "trek.h"
-# include      "getpar.h"
+#include <stdio.h>
+#include "trek.h"
+#include "getpar.h"
 
 /*
 **  SET WARP FACTOR
@@ -46,17 +53,24 @@ static char rcsid[] = "$Id: setwarp.c,v 1.2 1993/08/01 18:49:59 mycroft Exp $";
 **     checked for consistancy.
 */
 
-setwarp()
+/*ARGSUSED*/
+void
+setwarp(v)
+       int v __attribute__((__unused__));
 {
        double  warpfac;
 
        warpfac = getfltpar("Warp factor");
        if (warpfac < 0.0)
                return;
-       if (warpfac < 1.0)
-               return (printf("Minimum warp speed is 1.0\n"));
-       if (warpfac > 10.0)
-               return (printf("Maximum speed is warp 10.0\n"));
+       if (warpfac < 1.0) {
+               printf("Minimum warp speed is 1.0\n");
+               return;
+       }
+       if (warpfac > 10.0) {
+               printf("Maximum speed is warp 10.0\n");
+               return;
+       }
        if (warpfac > 6.0)
                printf("Damage to warp engines may occur above warp 6.0\n");
        Ship.warp = warpfac;