]> git.eshelyaron.com Git - emacs.git/commitdiff
(index, rindex): Prototype conditionally.
authorDave Love <fx@gnu.org>
Mon, 4 Sep 2000 15:26:16 +0000 (15:26 +0000)
committerDave Love <fx@gnu.org>
Mon, 4 Sep 2000 15:26:16 +0000 (15:26 +0000)
lib-src/ChangeLog
lib-src/movemail.c

index 11dc8cfeaa8ac30bd0820e8ecef411e7416bb50a..26449633c3ec0edcb454d32cbbd017c0d250b2bb 100644 (file)
@@ -1,3 +1,7 @@
+2000-09-04  Dave Love  <fx@gnu.org>
+
+       * movemail.c (index, rindex): Prototype conditionally.
+
 2000-09-03  Andrew Innes  <andrewi@gnu.org>
 
        * makefile.w32-in: Change to DOS line endings.
index cfe817c11197c1f4d3339c26c360da922ff39cd8..61d58688901721359bdf256dc63d0f3a971f8de6 100644 (file)
@@ -143,7 +143,12 @@ static char *mail_spool_name ();
 extern int errno;
 #endif
 char *strerror ();
-extern char *rindex ();
+#ifdef HAVE_INDEX
+extern char *index __P ((const char *, int));
+#endif
+#ifdef HAVE_RINDEX
+extern char *rindex __P((const char *, int));
+#endif
 
 void fatal ();
 void error ();