Use STAT64 test for the new stat64 functions
diff --git a/file.c b/file.c
index 149a585..9ffb838 100644
--- a/file.c
+++ b/file.c
@@ -611,7 +611,7 @@
realprintstat(tcp, &statbuf);
}
-#ifdef linux
+#ifdef STAT64
static void
printstat64(tcp, addr)
struct tcb *tcp;
@@ -683,7 +683,9 @@
else
tprintf("...}");
}
+#endif /* STAT64 */
+#ifdef linux
static void
convertoldstat(oldbuf, newbuf)
const struct __old_kernel_stat *oldbuf;
@@ -703,10 +705,8 @@
newbuf->st_blksize=0; /* not supported in old_stat */
newbuf->st_blocks=0; /* not supported in old_stat */
}
-#endif
-#ifdef linux
static void
printoldstat(tcp, addr)
struct tcb *tcp;