bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Use module 'c99' when needed for variadic macros with '...' syntax


From: Bruno Haible
Subject: Use module 'c99' when needed for variadic macros with '...' syntax
Date: Sat, 05 Sep 2020 20:05:00 +0200
User-agent: KMail/5.1.3 (Linux/4.4.0-186-generic; KDE/5.18.0; x86_64; ; )

When compiling a gnulib testdir with CC="gcc -std=gnu90 -pedantic" (without
the 'c99' module) I see these warnings:

./malloc/scratch_buffer.h:107:55: warning: ISO C99 requires at least one 
argument for the "..." in a variadic macro
./malloc/scratch_buffer.h:124:56: warning: ISO C99 requires at least one 
argument for the "..." in a variadic macro
./malloc/scratch_buffer.h:95:46: warning: ISO C99 requires at least one 
argument for the "..." in a variadic macro
sm3.c:409:48: warning: ISO C99 requires at least one argument for the "..." in 
a variadic macro

Thus, the modules 'scratch_buffer' and 'crypto/sm3' are effectively already
using C11. C90 compilers surely will reject this syntax.


2020-09-05  Bruno Haible  <bruno@clisp.org>

        Use module 'c99' when needed for variadic macros with '...' syntax.
        * modules/crypto/sm3 (Depends-on): Add c99.

diff --git a/modules/crypto/sm3 b/modules/crypto/sm3
index 007fbc4..3df7d88 100644
--- a/modules/crypto/sm3
+++ b/modules/crypto/sm3
@@ -8,6 +8,7 @@ m4/sm3.m4
 
 Depends-on:
 byteswap
+c99
 extern-inline
 stdalign
 stdint




reply via email to

[Prev in Thread] Current Thread [Next in Thread]