/*
 *  VERSION.H
 *
 *  Major version number (minor version numbers kept in subsidiary
 *  files.
 */

#ifndef _CONFIG_H
#include "config.h"
#endif

#define VERSION "V1.15"

#define COPYRIGHT \
   "(C) Copyright 1987 by John Gilmore\n"   \
   "Copying and use of this program are controlled by the terms of the Free\n" \
   "Software Foundation's GNU Emacs General Public License.\n"                 \
   "Amiga Changes Copyright 1988 by William Loftus. All rights reserved.\n"    \
   "Additional changes Copyright 1989 by Matthew Dillon, All Rights Reserved.\n"  \
   "Some trivial changes adapted from GNU Tar v1.1\n" \
   "File links & other changes by Anthon Pang.\n"

#define DCOPYRIGHT \
    "(c)Copyright 1990-91, Matthew Dillon, all rights reserved\n"

#ifdef AMIGA
#define IDENT(subv)   static char *version_tag = \
    "$VER: tarsplit " VERSION subv " (" __DATE__ ")"
#else
#define IDENT(subv)   static char *Ident = \
    "@($)" __FILE__ " " VERSION subv " " __DATE__
#endif
