home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gtak212.zip / 1.10 / version.c < prev    next >
Text File  |  1993-02-24  |  2KB  |  75 lines

  1. /*****************************************************************************
  2.  * $Id: version.c,v 1.8 1993/02/21 14:43:58 ak Exp $
  3.  *****************************************************************************
  4.  * $Log: version.c,v $
  5.  * Revision 1.8  1993/02/21  14:43:58  ak
  6.  * mkdir() changed in 0.8f.
  7.  *
  8.  * Revision 1.7  1993/02/15  22:58:53  ak
  9.  * *** empty log message ***
  10.  *
  11.  * Revision 1.6  1992/12/13  10:18:32  ak
  12.  * 2.10
  13.  *
  14.  * Revision 1.5  1992/10/29  10:34:29  ak
  15.  * *** empty log message ***
  16.  *
  17.  * Revision 1.4  1992/09/26  09:07:24  ak
  18.  * Version 2.01
  19.  *
  20.  * Revision 1.3  1992/09/12  15:57:41  ak
  21.  * - Usenet patches for GNU TAR 1.10
  22.  * - Bugfixes and patches of Kai Uwe Rommel:
  23.  *         filename conversion for FAT
  24.  *         EMX 0.8e
  25.  *         -0..1 alias for a: b:
  26.  *         -2..7 alias for +++TAPE$x
  27.  *
  28.  * Revision 1.2  1992/09/02  20:08:59  ak
  29.  * Version AK200
  30.  * - Tape access
  31.  * - Quick file access
  32.  * - OS/2 extended attributes
  33.  * - Some OS/2 fixes
  34.  * - Some fixes of Kai Uwe Rommel
  35.  *
  36.  * Revision 1.1.1.1  1992/09/02  19:23:08  ak
  37.  * Original GNU Tar 1.10 with some filenames changed for FAT compatibility.
  38.  *
  39.  * Revision 1.1  1992/09/02  19:23:06  ak
  40.  * Initial revision
  41.  *
  42.  *****************************************************************************/
  43.  
  44. static char *rcsid = "$Id: version.c,v 1.8 1993/02/21 14:43:58 ak Exp $";
  45.  
  46. /*
  47.  * Modified by Andreas Kaiser July 92.
  48.  * See CHANGES.AK for info.
  49.  */
  50.  
  51. /* Version info for tar.
  52.    Copyright (C) 1989, Free Software Foundation.
  53.  
  54. This file is part of GNU Tar.
  55.  
  56. GNU Tar is free software; you can redistribute it and/or modify
  57. it under the terms of the GNU General Public License as published by
  58. the Free Software Foundation; either version 1, or (at your option)
  59. any later version.
  60.  
  61. GNU Tar is distributed in the hope that it will be useful,
  62. but WITHOUT ANY WARRANTY; without even the implied warranty of
  63. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  64. GNU General Public License for more details.
  65.  
  66. You should have received a copy of the GNU General Public License
  67. along with GNU Tar; see the file COPYING.  If not, write to
  68. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  69.  
  70. #if 1
  71. char version_string[] = "GNU tar version 1.10 (GTAK 2.12)";
  72. #else   
  73. char version_string[] = "GNU tar version 1.10";
  74. #endif
  75.