[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Small issue on GnuTLS 2.10.2
From: |
Vivek Dasmohapatra |
Subject: |
Re: Small issue on GnuTLS 2.10.2 |
Date: |
Fri, 1 Oct 2010 14:20:46 +0100 (BST) |
User-agent: |
Alpine 2.00 (DEB 1167 2008-08-23) |
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__)