1/* Stub functions.
2   Copyright (C) 2006 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11In addition to the permissions in the GNU General Public License, the
12Free Software Foundation gives you unlimited permission to link the
13compiled version of this file into combinations with other programs,
14and to distribute those combinations without any restriction coming
15from the use of this file.  (The General Public License restrictions
16do apply in other respects; for example, they cover modification of
17the file, and distribution when not linked into a combine
18executable.)
19
20GCC is distributed in the hope that it will be useful,
21but WITHOUT ANY WARRANTY; without even the implied warranty of
22MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23GNU General Public License for more details.
24
25You should have received a copy of the GNU General Public License
26along with GCC; see the file COPYING.  If not, write to
27the Free Software Foundation, 51 Franklin Street, Fifth Floor,
28Boston, MA 02110-1301, USA.  */
29
30#ifdef L_register_frame_info
31struct object;
32void  __register_frame_info (const void * __attribute__((unused)),
33			     struct object * __attribute__((unused)));
34void
35__register_frame_info (const void *p, struct object *ob)
36{
37}
38#endif
39
40#ifdef L_deregister_frame_info
41void *__deregister_frame_info (const void * __attribute__((unused)));
42void *
43__deregister_frame_info (const void *p)
44{
45  return (void *)0;
46}
47#endif
48
49#ifdef L_cxa_finalize
50void __cxa_finalize (void * __attribute__((unused)));
51void
52__cxa_finalize (void *p)
53{
54}
55#endif
56
57#ifdef L_Jv_RegisterClasses
58void _Jv_RegisterClasses (void * __attribute__((unused)));
59void
60_Jv_RegisterClasses (void *p)
61{
62}
63#endif
64