summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 13:30:22 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 13:30:22 +0000
commit71bfe7e7f7e64454c266ba379d24651dcc91b365 (patch)
treee9d8d9752e33629d8fd080e640e8dc19b7234e6f
parent2009-10-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-71bfe7e7f7e64454c266ba379d24651dcc91b365.tar.bz2
Remove #ifdef's.
-rw-r--r--testsuites/psxtests/psxstat/test.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/testsuites/psxtests/psxstat/test.c b/testsuites/psxtests/psxstat/test.c
index 34f1952b66..1553142c51 100644
--- a/testsuites/psxtests/psxstat/test.c
+++ b/testsuites/psxtests/psxstat/test.c
@@ -206,11 +206,8 @@ void stat_a_file(
printf( "...st_atime %s", ctime( &statbuf.st_atime ) );
printf( "...st_mtime %s", ctime( &statbuf.st_mtime ) );
printf( "...st_ctime %s", ctime( &statbuf.st_ctime ) );
-#if defined(__svr4__) && !defined(__PPC__) && !defined(__sun__)
- printf( "...st_blksize %x\n", statbuf.st_blksize );
- printf( "...st_blocks %x\n", statbuf.st_blocks );
-#endif
-
+ printf( "...st_blksize %lx\n", statbuf.st_blksize );
+ printf( "...st_blocks %lx\n", statbuf.st_blocks );
}
}