diff options
author | Paul Smith <psmith@gnu.org> | 1999-10-15 07:00:58 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-10-15 07:00:58 +0000 |
commit | 3e26bde6dbc9a8a46d5a1a694e6810e689cbd25a (patch) | |
tree | 20d000099ba9c0723a3c4d8925adba97aee4f2dc /ar.c | |
parent | c71200d0229f75fe99d508dd3aea013ceba4d32e (diff) | |
download | gunmake-3e26bde6dbc9a8a46d5a1a694e6810e689cbd25a.tar.gz |
* Fix PR/1394.
* Apply changes from Paul Eggert.
* Many other cleanups (index/rindex --> strchr/strrchr, etc.)
Diffstat (limited to 'ar.c')
-rw-r--r-- | ar.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ int ar_name (name) char *name; { - char *p = index (name, '('), *end = name + strlen (name) - 1; + char *p = strchr (name, '('), *end = name + strlen (name) - 1; if (p == 0 || p == name || *end != ')') return 0; @@ -61,7 +61,7 @@ void ar_parse_name (name, arname_p, memname_p) char *name, **arname_p, **memname_p; { - char *p = index (name, '('), *end = name + strlen (name) - 1; + char *p = strchr (name, '('), *end = name + strlen (name) - 1; if (arname_p != 0) *arname_p = savestring (name, p - name); |