Re: [PATCH] tests: add missing include

2017-01-23 Thread Yann E. MORIN
Pekka, All, On 2017-01-23 14:15 +0200, Pekka Paalanen spake thusly: > On Sun, 22 Jan 2017 10:36:25 -0800 > Yong Bakos wrote: > > > On Jan 22, 2017, at 5:50 AM, Yann E. MORIN > > > wrote: > > > > > > The int32_t type is defined in stdint.h. > >

Re: [PATCH] tests: add missing include

2017-01-23 Thread Pekka Paalanen
On Sun, 22 Jan 2017 10:36:25 -0800 Yong Bakos wrote: > Yann, > > > On Jan 22, 2017, at 5:50 AM, Yann E. MORIN wrote: > > > > The int32_t type is defined in stdint.h. > > > > The musl C library is very conservative in the headers that it > >

Re: [PATCH] tests: add missing include

2017-01-22 Thread Yong Bakos
Yann, > On Jan 22, 2017, at 5:50 AM, Yann E. MORIN wrote: > > The int32_t type is defined in stdint.h. > > The musl C library is very conservative in the headers that it > internally includes, and stdint.h is not included by any other header, > unlike with glibc or

[PATCH] tests: add missing include

2017-01-22 Thread Yann E. MORIN
The int32_t type is defined in stdint.h. The musl C library is very conservative in the headers that it internally includes, and stdint.h is not included by any other header, unlike with glibc or uClibc, which breaks the build. Add the missing header. Signed-off-by: "Yann E. MORIN"