XlationSvc: remove a "'" added in previous spelling commit that causes warnings
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / MsgLogI.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 libraries 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 /* 
24  * (c) Copyright 1995 Digital Equipment Corporation.
25  * (c) Copyright 1995 Hewlett-Packard Company.
26  * (c) Copyright 1995 International Business Machines Corp.
27  * (c) Copyright 1995 Sun Microsystems, Inc.
28  * (c) Copyright 1995 Novell, Inc. 
29  * (c) Copyright 1995 FUJITSU LIMITED.
30  * (c) Copyright 1995 Hitachi.
31  *
32  * MsgLogI.h - Private header file for the Message Logging Service
33  *
34  * $XConsortium: MsgLogI.h /main/4 1995/07/14 13:23:02 drk $
35  *
36  */
37
38 #ifndef _Dt_MsgLogI_h
39 #define _Dt_MsgLogI_h
40
41 # include <stdarg.h>
42 # define Va_start(a,b) va_start(a,b)
43
44 /*
45  * Account for the various macros on different systems which indicate that
46  * stdarg.h has been included.  Code in this file only checks for 
47  * _STDARG_INCLUDED.  If a given system defines another macro that means the
48  * same thing -- then define _STDARG_INCLUDED here.
49  *
50  *      System          Macro Indicating stdarg.h has been included
51  *     --------        ---------------------------------------------
52  *      HPUX            _STDARG_INCLUDED
53  *      AIX             _H_STDARG
54  *      SOLARIS         _STDARG_H
55  */
56
57 #ifdef _H_STDARG
58 #define _STDARG_INCLUDED
59 #endif
60
61 #ifdef  _STDARG_H
62 #define _STDARG_INCLUDED
63 #endif
64
65 #endif /* _Dt_MsgLogI_h */