(parse_old_offset): Use strchr, not index.
authorJim Meyering <jim@meyering.net>
Sun, 29 Jan 1995 05:33:05 +0000 (05:33 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 29 Jan 1995 05:33:05 +0000 (05:33 +0000)
src/od.c

index 83b45eb..807635f 100644 (file)
--- a/src/od.c
+++ b/src/od.c
@@ -1340,7 +1340,7 @@ parse_old_offset (s)
   /* Determine the radix we'll use to interpret S.  If there is a `.',
      it's decimal, otherwise, if the string begins with `0X'or `0x',
      it's hexadecimal, else octal.  */
-  if (index (s, '.') != NULL)
+  if (strchr (s, '.') != NULL)
     radix = 10;
   else
     {