]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - mille/save.c
sprinkle static
[bsdgames-darwin.git] / mille / save.c
index 05c007f0e90085f671c7a840c62c5542ebaf194d..eff5c9a83207282c8826050fee5aa1ed1bb8b774 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: save.c,v 1.6 1997/10/12 00:54:32 lukem Exp $   */
+/*     $NetBSD: save.c,v 1.14 2009/05/25 23:24:54 dholland Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
  * 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.
  *
 #if 0
 static char sccsid[] = "@(#)save.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: save.c,v 1.6 1997/10/12 00:54:32 lukem Exp $");
+__RCSID("$NetBSD: save.c,v 1.14 2009/05/25 23:24:54 dholland Exp $");
 #endif
 #endif /* not lint */
 
+#include <time.h>
+
 #include "mille.h"
 
 #ifndef        unctrl
 #include "unctrl.h"
 #endif
 
-# ifdef        attron
-#      include <term.h>
-# endif        attron
-
 /*
  * @(#)save.c  1.2 (Berkeley) 3/28/83
  */
@@ -63,10 +57,10 @@ typedef     struct stat     STAT;
  *     Returns FALSE if it couldn't be done.
  */
 bool
-save()
+save(void)
 {
        char    *sp;
-       int     outf;
+       int     outfd;
        time_t  *tp;
        char    buf[80];
        time_t  tme;
@@ -118,15 +112,15 @@ over:
            && getyn(OVERWRITEFILEPROMPT) == FALSE))
                return FALSE;
 
-       if ((outf = creat(buf, 0644)) < 0) {
+       if ((outfd = creat(buf, 0644)) < 0) {
                error(strerror(errno));
                return FALSE;
        }
        mvwaddstr(Score, ERR_Y, ERR_X, buf);
        wrefresh(Score);
        time(tp);                       /* get current time             */
-       rv = varpush(outf, writev);
-       close(outf);
+       rv = varpush(outfd, writev);
+       close(outfd);
        if (rv == FALSE) {
                unlink(buf);
        } else {
@@ -147,8 +141,7 @@ over:
  * be cleaned up before the game starts.
  */
 bool
-rest_f(file)
-       char    *file;
+rest_f(const char *file)
 {
 
        char    *sp;
@@ -156,7 +149,7 @@ rest_f(file)
        char    buf[80];
        STAT    sbuf;
 
-       if ((inf = open(file, 0)) < 0) {
+       if ((inf = open(file, O_RDONLY)) < 0) {
                warn("%s", file);
                exit(1);
        }
@@ -173,7 +166,7 @@ rest_f(file)
        /*
         * initialize some necessary values
         */
-       (void)sprintf(Initstr, "%s [%s]\n", file, buf);
+       (void)snprintf(Initstr, INITSTR_SIZE, "%s [%s]\n", file, buf);
        Fromfile = file;
        return !On_exit;
 }