Hi,

Eric Blake <e...@byu.net> writes:

> +unsigned int
> +rpl_sleep (unsigned int seconds)
> +{
> +  const unsigned int limit = 49 * 24 * 60 * 60;
> +  while (limit < seconds)
> +    {
> +      seconds -= limit;
> +      unsigned int result = sleep (limit);

This declaration-after-statement is a C99 thing.  Isn’t it something
usually avoided in Gnulib?  (I’m asking because I don’t know what the
policy is and I was assuming Gnulib code to be C89.)

Thanks,
Ludo’.



Reply via email to