diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-04-01 14:53:02 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-04-01 14:53:02 +0000 |
commit | d78045eed04e74da0c05a82038521fe38f0dee01 (patch) | |
tree | b3a108f3cbd188fcd1da5ba23ab1d49a68f831cb | |
parent | 4663241541cd1262cb58e5b425cf0c5606ff8bb9 (diff) | |
download | cygnal-d78045eed04e74da0c05a82038521fe38f0dee01.tar.gz cygnal-d78045eed04e74da0c05a82038521fe38f0dee01.tar.bz2 cygnal-d78045eed04e74da0c05a82038521fe38f0dee01.zip |
* libc/sys/cygwin/sys/dirent.h (struct DIR): Change type of
__d_position member to _off_t.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/sys/cygwin/sys/dirent.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 01793266b..2c8c547c1 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2003-04-01 Corinna Vinschen <corinna@vinschen.de> + + * libc/sys/cygwin/sys/dirent.h (struct DIR): Change type of + __d_position member to _off_t. + 2003-03-20 Jeff Johnston <jjohnstn@redhat.com> * libc/stdio/vfscanf.c (__svfscanf_r): For floating point conversion, diff --git a/newlib/libc/sys/cygwin/sys/dirent.h b/newlib/libc/sys/cygwin/sys/dirent.h index cecf7a85a..810d8592c 100644 --- a/newlib/libc/sys/cygwin/sys/dirent.h +++ b/newlib/libc/sys/cygwin/sys/dirent.h @@ -33,7 +33,7 @@ typedef struct __DIR unsigned long __d_cookie; struct dirent *__d_dirent; char *__d_dirname; /* directory name with trailing '*' */ - __off32_t __d_position; /* used by telldir/seekdir */ + _off_t __d_position; /* used by telldir/seekdir */ unsigned long __d_dirhash; /* hash of directory name for use by readdir */ union |