This is the mail archive of the cygwin-developers 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]
Other format: [Raw text]

About <sys/select.h> and <sys/time.h>, without gnulib


Hi,

independent of gnulib, I don't believe this include order should break:

  $ cat sys-time-h.c
  #include <sys/select.h>
  #include <sys/time.h>

  $ gcc -c sys-time-h.c
  In file included from /usr/include/time.h:12:0,
                   from /usr/include/sys/time.h:268,
                   from sys-time-h.c:2:
  /usr/include/sys/reent.h:276:3: error: expected specifier-qualifier-list before â_fpos64_tâ
     _fpos64_t _EXFNPTR(_seek64, (struct _reent *, _PTR, _fpos64_t, int));
     ^
  $

This is with 64-bit cygwin-2.5.1 and gcc-5.3.0.

It does help to reverse their order, or include <sys/types.h> before,
but I've failed to find something like that to be required by the specs...

Thoughts?
/haubi/


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