DtSvc/DtUtil1: Coverity (memory corruption, moderate)
[oweals/cde.git] / cde / include / hpversion.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: hpversion.h /main/5 1996/08/30 15:22:49 drk $ */
24 /* -*-C-*-
25 ****************************************************************
26 */
27 /* The following macro should be invoked once by each of the X11 components
28    to provide standard revision information. */
29 #ifndef lint
30 #define version_tag(FILE_VERSION) \
31 static char _hp_merge_version[] = "@(#)" FILE_VERSION;
32 #else   /* lint */
33 #define version_tag(FILE_VERSION)
34 #endif  /* lint */
35
36 /* Any revision information other than the standard 'hpversion' macro shoud
37    be conditionally compiled using the VERBOSE_REV_INFO constant so that it
38    can be excluded for official X11 releases. To set VERBOSE_REV_INFO, comment
39    out one of the following 2 blocks. */
40
41 /* This block turns on VERBOSE_REV_INFO */
42 /*
43 #ifndef lint
44 #define VERBOSE_REV_INFO  1
45 #else
46 #ifdef VERBOSE_REV_INFO
47 #undef VERBOSE_REV_INFO
48 #endif
49 #endif
50 */
51
52 /* This block turns off VERBOSE_REV_INFO */
53 #ifdef VERBOSE_REV_INFO         
54 #undef VERBOSE_REV_INFO
55 #endif