diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-20 13:11:38 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-20 13:11:38 +0000 |
commit | 22bd04e0688a3737ad14fcd93b79e5eec9c0ff2e (patch) | |
tree | a5c1277b2489ed619b408b287e3425dd9537a16c /gcc/config.in | |
parent | 85b34d4d1486523f8c47045ef688f667df31d352 (diff) | |
download | ppe42-gcc-22bd04e0688a3737ad14fcd93b79e5eec9c0ff2e.tar.gz ppe42-gcc-22bd04e0688a3737ad14fcd93b79e5eec9c0ff2e.zip |
Switch to strrchr if available instead of rindex
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19341 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 8d0631a1110..bf2d02f0bb6 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -92,12 +92,18 @@ /* Define if you have the rindex function. */ #undef HAVE_RINDEX +/* Define if you have the strchr function. */ +#undef HAVE_STRCHR + /* Define if you have the setrlimit function. */ #undef HAVE_SETRLIMIT /* Define if you have the strerror function. */ #undef HAVE_STRERROR +/* Define if you have the strrchr function. */ +#undef HAVE_STRRCHR + /* Define if you have the strtoul function. */ #undef HAVE_STRTOUL |