diff options
author | Christopher Faylor <me@cgf.cx> | 2000-11-22 01:49:19 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-11-22 01:49:19 +0000 |
commit | 08eac2aedddd2c5d71a70c133e9563ce3ac4e6db (patch) | |
tree | 9b984b5ba177de015a18122f86c844306b4c00e1 /newlib | |
parent | 5478bf376fb3d280f7eef7da7dfaaea97dd8b353 (diff) | |
download | newlib-08eac2aedddd2c5d71a70c133e9563ce3ac4e6db.zip newlib-08eac2aedddd2c5d71a70c133e9563ce3ac4e6db.tar.gz newlib-08eac2aedddd2c5d71a70c133e9563ce3ac4e6db.tar.bz2 |
* libc/sys/cygwin/sys/dirent.h: Change definition to avoid necessity of
including windows headers.
Diffstat (limited to 'newlib')
-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 dd238b0..95d1704 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +Tue Nov 21 20:32:21 2000 Christopher Faylor <cgf@cygnus.com> + + * libc/sys/cygwin/sys/dirent.h: Change definition to avoid necessity of + including windows headers. + 2000-11-20 Jeff Johnston <jjohnstn@redhat.com> * libc/include/sys/unistd.h: Removed definition of MAXNAMLEN. diff --git a/newlib/libc/sys/cygwin/sys/dirent.h b/newlib/libc/sys/cygwin/sys/dirent.h index 3c0ec4e..b3d52f7 100644 --- a/newlib/libc/sys/cygwin/sys/dirent.h +++ b/newlib/libc/sys/cygwin/sys/dirent.h @@ -30,7 +30,7 @@ typedef struct #ifdef _COMPILING_NEWLIB struct { - HANDLE __handle; + void *__handle; char __open_p; } __d_data; #endif |