Hi,

It lib/path-concat.c, there is a prototype for malloc unconditionally
declared.  This conflict with the definition in glibc 2.2.  I have made a
small patch with brackets the prototype with HAVE_DECL_MALLOC.

-- 
Mike Madore
Software Engineer
TurboLinux, Inc.
diff -Nur fileutils-4.0.33/lib/path-concat.c fileutils-4.0.33.new/lib/path-concat.c
--- fileutils-4.0.33/lib/path-concat.c	Wed Jun 21 05:54:05 2000
+++ fileutils-4.0.33.new/lib/path-concat.c	Fri Mar 16 10:32:58 2001
@@ -31,7 +31,10 @@
 #endif
 #include <sys/types.h>
 
+#ifndef HAVE_DECL_MALLOC
 char *malloc ();
+#endif
+
 #ifndef strdup
 char *strdup ();
 #endif

Reply via email to