[BACK]Return to tic.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tic

Diff for /src/usr.bin/tic/tic.c between version 1.10 and 1.11

version 1.10, 1999/03/22 18:43:19 version 1.11, 1999/06/27 08:17:46
Line 44 
Line 44 
 #include <dump_entry.h>  #include <dump_entry.h>
 #include <term_entry.h>  #include <term_entry.h>
   
 MODULE_ID("$From: tic.c,v 1.50 1999/03/16 01:12:04 tom Exp $")  MODULE_ID("$From: tic.c,v 1.51 1999/06/19 21:35:36 Philippe.De.Muyter Exp $")
   
 const char *_nc_progname = "tic";  const char *_nc_progname = "tic";
   
Line 62 
Line 62 
 {  {
         if (tmp_fp != 0)          if (tmp_fp != 0)
                 fclose(tmp_fp);                  fclose(tmp_fp);
         if (to_remove != 0)          if (to_remove != 0) {
   #if HAVE_REMOVE
                 remove(to_remove);                  remove(to_remove);
   #else
                   unlink(to_remove);
   #endif
           }
 }  }
   
 static void failed(const char *msg)  static void failed(const char *msg)

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11