+Wed Sep 17 23:56:11 1997 Jeffrey A Law (law@cygnus.com)
+
+ * util/install-info.c: Only provide an external decl for strrchr
+ if HAVE_STRCHR is not defined.
+
Mon Sep 15 22:53:01 1997 Jeffrey A Law (law@cygnus.com)
* aclocal.m4: Add replacement for AC_PROG_INSTALL.
/* install-info -- create Info directory entry(ies) for an Info file.
Copyright (C) 1996 Free Software Foundation, Inc.
-$Id: install-info.c,v 1.1.1.1 1997/08/21 22:58:12 jason Exp $
+$Id: install-info.c,v 1.3 1997/09/18 05:54:18 law Exp $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
#include <strings.h>
#endif /* !HAVE_STRING_H */
+#if !defined (HAVE_STRCHR)
+char *strrchr ();
+#endif /* !HAVE_STRCHR */
+
+
/* Get O_RDONLY. */
#ifdef HAVE_SYS_FCNTL_H
#include <sys/fcntl.h>
.info suffix. */
{
unsigned basename_len;
- extern char *strrchr ();
char *infile_basename = strrchr (infile, '/');
if (infile_basename)
infile_basename++;