diff options
author | Hiroaki Etoh <etoh@cvs.openbsd.org> | 2002-12-25 14:25:10 +0000 |
---|---|---|
committer | Hiroaki Etoh <etoh@cvs.openbsd.org> | 2002-12-25 14:25:10 +0000 |
commit | 94e1a6e36ab731a9755a7464f4ede5b2bd525d26 (patch) | |
tree | ebaf613e20a2b3061439a06c66d7497464915384 /gnu/egcs | |
parent | c7a8dc342149ecc45cb1d31b9d164ba059b21aa7 (diff) |
search_string_def is declared as public.
Diffstat (limited to 'gnu/egcs')
-rw-r--r-- | gnu/egcs/gcc/protector.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/egcs/gcc/protector.h b/gnu/egcs/gcc/protector.h index 8e7061a955f..5fcf422b247 100644 --- a/gnu/egcs/gcc/protector.h +++ b/gnu/egcs/gcc/protector.h @@ -28,7 +28,13 @@ Boston, MA 02111-1307, USA. */ /* insert a guard variable before a character buffer and change the order of pointer variables, character buffers and pointer arguments */ -extern void prepare_stack_protection PARAMS ((void)); +extern void prepare_stack_protection PARAMS ((int inlinable)); + +#ifdef TREE_CODE +/* search a character array from the specified type tree */ + +extern int search_string_def PARAMS ((tree names)); +#endif /* allocate a local variable in the stack area before character buffers to avoid the corruption of it */ |