Re: msvc port: ensure size_t

2011-09-11 Thread Bruno Haible
Paul Eggert wrote: > > = lib/sys_types.in.h > > = > > /* Provide a more complete sys/time.h. > > sys/time.h -> sys/types.h Oops. Thanks for the review. Corrected like this: 2011-09-11 Bruno Haible sys_types: Fix typo.

Re: msvc port: ensure size_t

2011-09-11 Thread Paul Eggert
On 09/11/11 09:25, Bruno Haible wrote: > = lib/sys_types.in.h = > /* Provide a more complete sys/time.h. sys/time.h -> sys/types.h

msvc port: ensure size_t

2011-09-11 Thread Bruno Haible
On MSVC 9, size_t is defined by but not by . This leads to compilation errors in strings.h and sys/uio.h, because the gnulib replacements of these files assume that defines size_t. We cannot put the replacement in , like for pid_t, because then it would collide with the size_t definition in . S