1 /* 2 * Copyright (c) 1994 david d `zoo' zuhn 3 * Copyright (c) 1994 Free Software Foundation, Inc. 4 * Copyright (c) 1992, Brian Berliner and Jeff Polk 5 * Copyright (c) 1989-1992, Brian Berliner 6 * 7 * You may distribute under the terms of the GNU General Public License as 8 * specified in the README file that comes with this CVS source distribution. 9 * 10 * version.c - the CVS version number 11 */ 12 13 #include "cvs.h" 14 15 #ifndef lint 16 static const char rcsid[] = "$CVSid: @(#)version.c 1.15 94/10/03 $"; 17 USE(rcsid); 18 #endif 19 20 char *version_string = "\nConcurrent Versions System (CVS) 1.7.1"; 21 22 #ifdef CLIENT_SUPPORT 23 #ifdef SERVER_SUPPORT 24 char *config_string = " (client/server)\n"; 25 #else 26 char *config_string = " (client)\n"; 27 #endif 28 #else 29 #ifdef SERVER_SUPPORT 30 char *config_string = " (server)\n"; 31 #else 32 char *config_string = "\n"; 33 #endif 34 #endif 35