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

Diff for /src/usr.bin/file/Attic/print.c between version 1.7 and 1.7.4.1

version 1.7, 2002/02/19 19:39:38 version 1.7.4.1, 2003/03/12 02:14:16
Line 106 
Line 106 
 }  }
   
 /*  /*
    * This "error" is here so we don't have to change all occurrences of
    * error() to err(1,...) when importing new versions from Christos.
    */
   void error(const char *fmt, ...)
   {
           va_list va;
           va_start(va, fmt);
           verr(1, fmt, va);
   }
   
   /*
  * ckfputs - futs, but with error checking   * ckfputs - futs, but with error checking
  * ckfprintf - fprintf, but with error checking   * ckfprintf - fprintf, but with error checking
  */   */

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.7.4.1