Link with C++ linker
[oweals/cde.git] / cde / programs / nsgmls / xnew.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: xnew.h /main/1 1996/07/29 17:10:33 cde-hp $ */
24 #ifndef xnew_INCLUDED
25 #define xnew_INCLUDED 1
26
27 #ifdef SP_NEW_H_MISSING
28
29 typedef void (*VFP)();
30
31 #ifdef SP_SET_NEW_HANDLER_EXTERN_C
32 extern "C" 
33 #endif
34 void set_new_handler(VFP);
35
36 #ifndef SP_DECLARE_PLACEMENT_OPERATOR_NEW
37 #define SP_DECLARE_PLACEMENT_OPERATOR_NEW
38 #endif
39
40 #else /* not SP_NEW_H_MISSING */
41
42 #include <new.h>
43
44 #endif /* not SP_NEW_H_MISSING */
45
46 #ifdef SP_DECLARE_PLACEMENT_OPERATOR_NEW
47
48 inline
49 void *operator new(size_t, void *p)
50 {
51     return p;
52 }
53
54 #endif /* SP_DECLARE_PLACEMENT_OPERATOR_NEW */
55
56 #endif /* not xnew_INCLUDED */