From 71bfe7e7f7e64454c266ba379d24651dcc91b365 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 30 Oct 2009 13:30:22 +0000 Subject: Remove #ifdef's. --- testsuites/psxtests/psxstat/test.c | 7 ++----- 1 file 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 ); } } -- cgit v1.2.3