OSDN Git Service

2002-09-10 Frank Ch. Eigler <fche@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / hooks.h
1 /* General-purpose hooks.
2    Copyright (C) 2002 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option) any
7 later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18  In other words, you are welcome to use, share and improve this program.
19  You are forbidden to forbid anyone else to use, share and improve
20  what you give them.   Help stamp out software-hoarding!  */
21
22 #ifndef GCC_HOOKS_H
23 #define GCC_HOOKS_H
24
25 bool hook_void_bool_false PARAMS ((void));
26 bool hook_tree_bool_false PARAMS ((tree));
27 void hook_tree_int_void PARAMS ((tree, int));
28 void hook_void_void PARAMS ((void));
29 void hook_FILEptr_constcharptr_void PARAMS ((FILE *, const char *));
30
31 #endif