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

Diff for /src/usr.bin/tip/Attic/tip.c between version 1.17 and 1.18

version 1.17, 2002/03/25 16:41:36 version 1.18, 2002/05/07 06:56:50
Line 35 
Line 35 
  */   */
   
 #ifndef lint  #ifndef lint
 static char copyright[] =  static const char copyright[] =
 "@(#) Copyright (c) 1983, 1993\n\  "@(#) Copyright (c) 1983, 1993\n\
         The Regents of the University of California.  All rights reserved.\n";          The Regents of the University of California.  All rights reserved.\n";
 #endif /* not lint */  #endif /* not lint */
Line 44 
Line 44 
 #if 0  #if 0
 static char sccsid[] = "@(#)tip.c       8.1 (Berkeley) 6/6/93";  static char sccsid[] = "@(#)tip.c       8.1 (Berkeley) 6/6/93";
 #endif  #endif
 static char rcsid[] = "$OpenBSD$";  static const char rcsid[] = "$OpenBSD$";
 #endif /* not lint */  #endif /* not lint */
   
 /*  /*
Line 631 
Line 631 
                 (void) fflush(stderr);                  (void) fflush(stderr);
         }          }
         for (i = 0; i < 0200; i++)          for (i = 0; i < 0200; i++)
                 partab[i] = (evenpartab[i] ^ flip | set) & clr;                  partab[i] = ((evenpartab[i] ^ flip) | set) & clr;
 }  }

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18