diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-09-28 01:28:00 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-09-28 01:28:00 +0000 |
commit | ea2f13a145919c983302573dc2034c4e831af905 (patch) | |
tree | 8e255bcb5510d6ad97dd130e391b44c987158827 /gcc/protoize.c | |
parent | 594606db14c1d04991982a5c90af540c61852d28 (diff) | |
download | gcc-ea2f13a145919c983302573dc2034c4e831af905.tar.gz |
Declare rindex unconditionally.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5502 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index 93b09cf2b9e..48c7262994e 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -170,7 +170,6 @@ extern void longjmp (); If so, we would get a warning from this. */ extern size_t strlen () #endif -extern char * rindex (); /* Fork is not declared because the declaration caused a conflict on the HPPA. */ @@ -180,6 +179,8 @@ extern char * rindex (); #endif /* !defined (POSIX) */ +extern char *rindex (); + /* Look for these where the `const' qualifier is intentionally cast aside. */ #define NONCONST |