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

Diff for /src/usr.bin/file/Attic/tar.h between version 1.4 and 1.5

version 1.4, 2003/07/02 21:04:10 version 1.5, 2004/05/19 02:32:36
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$ */
   
 /*  /*
    * Copyright (c) Ian F. Darwin 1986-1995.
    * Software written by Ian F. Darwin and others;
    * maintained 1995-present by Christos Zoulas and others.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, are permitted provided that the following conditions
    * are met:
    * 1. Redistributions of source code must retain the above copyright
    *    notice immediately at the beginning of the file, without modification,
    *    this list of conditions, and the following disclaimer.
    * 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.
    *
    * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
    * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    * SUCH DAMAGE.
    */
   /*
  * Header file for public domain tar (tape archive) program.   * Header file for public domain tar (tape archive) program.
  *   *
  * @(#)tar.h 1.20 86/10/29      Public Domain.   * @(#)tar.h 1.20 86/10/29      Public Domain.
  *   *
  * Created 25 August 1985 by John Gilmore, ihnp4!hoptoad!gnu.   * Created 25 August 1985 by John Gilmore, ihnp4!hoptoad!gnu.
  *   *
    * $Id$ # checkin only
  */   */
   
 /*  /*
  * Kludge for handling systems that can't cope with multiple   * Kludge for handling systems that cannot cope with multiple
  * external definitions of a variable.  In ONE routine (tar.c),   * external definitions of a variable.  In ONE routine (tar.c),
  * we #define TAR_EXTERN to null; here, we set it to "extern" if   * we #define TAR_EXTERN to null; here, we set it to "extern" if
  * it is not already set.   * it is not already set.
Line 166 
Line 193 
  * Error recovery stuff   * Error recovery stuff
  */   */
 TAR_EXTERN char         read_error_flag;  TAR_EXTERN char         read_error_flag;
   
   
   #if 0
   /*
    * Declarations of functions available to the world.
    */
   /*LINTLIBRARY*/
   #define  annorec(stream, msg)   anno(stream, msg, 0)    /* Cur rec */
   #define annofile(stream, msg)   anno(stream, msg, 1)    /* Saved rec */
   #endif

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5