Small issue on GnuTLS 2.10.2
    Vivek Dasmohapatra 
    vivek at collabora.co.uk
       
    Fri Oct  1 15:20:46 CEST 2010
    
    
  
On Fri, 1 Oct 2010, Simon Josefsson wrote:
> You are right, see below.  I'm looking into how difficult it would be to
> fix the --pedantic warnings too, but it does warn about some constructs
> (like variadic CPP function macros) that we only use if they work.
fwiw, with --std=c99 --pedantic
// bitches about this (GNU named vararg syntax)
#define GNU_VARIADIC(x...) fprintf(stderr, x)
// happy with this
#define C9X_VARIADIC(...) fprintf(stderr, __VA_ARGS__)
    
    
More information about the Gnutls-devel
mailing list