On Tue, Aug 8, 2023 at 3:23 PM Richard Henderson < richard.hender...@linaro.org> wrote:
> On 8/7/23 23:07, Karim Taha wrote: > > + uint32_t st_flags; /* user defined flags for file */ > > + __uint32_t st_gen; /* file generation number */ > > + __int32_t st_lspare; > > Oh, drop the __ types. > Agreed. The original from the blitz branch copied from FreeBSD's stat.h file which used the __ types to avoid namespace pollution... a constraint we don't have here. Warner