Tim Mooney <[EMAIL PROTECTED]> writes:

> cc: Error: fts.c, line 196: Missing ";". (nosemi)
>   return (uintmax_t) ax->ino % table_size;

Thanks for reporting that.  Does this patch fix things for you?

2004-01-21  Paul Eggert  <[EMAIL PROTECTED]>

        * lib/fts.c [! HAVE_INTTYPES_H && HAVE_STDINT_H]: Include <stdint.h>.
        Tim Mooney reported that this is needed with Compaq C V6.5-207 (dtk)
        on Compaq Tru64 UNIX V5.1B (Rev. 2650).

--- fts.c       Sat Dec 20 10:05:23 2003
+++ /tmp/fts.c  Wed Jan 21 22:39:08 2004
@@ -53,6 +53,10 @@ static char sccsid[] = "@(#)fts.c    8.6 (B
 #include <unistd.h>
 #if HAVE_INTTYPES_H
 # include <inttypes.h>
+#else
+# if HAVE_STDINT_H
+#  include <stdint.h>
+# endif
 #endif
 
 #if defined _LIBC


_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to