changeset 4056:016ec66e2523

[project @ 2002-09-03 12:12:47 by jwe]
author jwe
date Tue, 03 Sep 2002 12:12:47 +0000
parents 7690958e7726
children 2a2108853c70
files kpathsea/ChangeLog kpathsea/xstat.c
diffstat 2 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/kpathsea/ChangeLog	Sun Aug 18 01:56:59 2002 +0000
+++ b/kpathsea/ChangeLog	Tue Sep 03 12:12:47 2002 +0000
@@ -1,3 +1,8 @@
+2002-09-03  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* xstat.c: Delete forward decl for lstat.  It apparently causes
+	trouble on some systems with gcc 3.x.
+
 2002-04-12  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* config.guess, config.sub: Update from FSF sources.
--- a/kpathsea/xstat.c	Sun Aug 18 01:56:59 2002 +0000
+++ b/kpathsea/xstat.c	Tue Sep 03 12:12:47 2002 +0000
@@ -34,11 +34,9 @@
 
 
 /* If we don't have symbolic links, lstat is the same as stat, and
-   a #define is made in the include file.  We declare lstat to avoid an
-   implicit declaration warning for development; sigh.  */
+   a #define is made in the include file.  */
 
 #ifdef S_ISLNK
-extern int lstat ();
 struct stat
 xlstat P1C(const_string, path)
 {