* include/cygwin/types.h: Fix erroneous definition of ino_t from

2003-04-28.
This commit is contained in:
Corinna Vinschen 2003-05-03 18:14:29 +00:00
parent 40d3c80413
commit a6d745f53c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-05-03 Corinna Vinschen <corinna@vinschen.de>
* include/cygwin/types.h: Fix erroneous definition of ino_t from
2003-04-28.
2003-05-03 Corinna Vinschen <corinna@vinschen.de>
* syscalls.cc (chown_worker): Allow chown'ing of socket files.

View File

@ -90,7 +90,7 @@ typedef __gid16_t gid_t;
#ifndef __ino_t_defined
#define __ino_t_defined
typedef unsigned long long ino_t;
typedef unsigned long ino_t;
#endif /*__ino_t_defined*/
#ifndef __BIT_TYPES_DEFINED