This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: ??typedef unsigned long long dev_t


On Thu, Feb 08, 2001 at 03:39:09PM +0100, Daniel Probst wrote:
> In current cygwin file /usr/include/sys/types.h, line 124 shows:
> 
> typedef unsigned long long dev_t;
> 
> Is that one long too many?

Nope. Read the header again:

#if defined(__rtems__)
/* device numbers are 32-bit major and and 32-bit minor */
typedef unsigned long long dev_t;
#else
typedef short   dev_t;
#endif

Cygwin != RTEMS,

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]