Mercurial > hg > octave-nkf
diff liboctave/file-stat.h @ 3887:7da18459c08b
[project @ 2002-04-04 00:44:21 by jwe]
author | jwe |
---|---|
date | Thu, 04 Apr 2002 00:46:37 +0000 |
parents | 5eef8a2294bd |
children | 4c8a2e4e0717 |
line wrap: on
line diff
--- a/liboctave/file-stat.h +++ b/liboctave/file-stat.h @@ -98,15 +98,15 @@ octave_time mtime (void) const { return fs_mtime; } octave_time ctime (void) const { return fs_ctime; } -#if defined (HAVE_ST_RDEV) +#if defined (HAVE_STRUCT_STAT_ST_RDEV) dev_t rdev (void) const { return fs_rdev; } #endif -#if defined (HAVE_ST_BLKSIZE) +#if defined (HAVE_STRUCT_STAT_ST_BLKSIZE) long blksize (void) const { return fs_blksize; } #endif -#if defined (HAVE_ST_BLOCKS) +#if defined (HAVE_STRUCT_STAT_ST_BLOCKS) long blocks (void) const { return fs_blocks; } #endif @@ -175,17 +175,17 @@ // time of last file status change octave_time fs_ctime; -#if defined (HAVE_ST_RDEV) +#if defined (HAVE_STRUCT_STAT_ST_RDEV) // device number for special files dev_t fs_rdev; #endif -#if defined (HAVE_ST_BLKSIZE) +#if defined (HAVE_STRUCT_STAT_ST_BLKSIZE) // best I/O block size long fs_blksize; #endif -#if defined (HAVE_ST_BLOCKS) +#if defined (HAVE_STRUCT_STAT_ST_BLOCKS) // number of 512-byte blocks allocated long fs_blocks; #endif