aboutsummaryrefslogtreecommitdiff
path: root/math/bits
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2025-03-06 19:34:15 +0100
committerAurelien Jarno <aurelien@aurel32.net>2025-03-08 13:31:03 +0100
commit443cb0b5f25129dd0f1e9f9101299d31c4700b7f (patch)
treec7a621982abd0fcfcb347f69c7346b8d4410bd53 /math/bits
parenta9017caff3b77032d04e2e439f7c04a63241e63e (diff)
downloadglibc-master.zip
glibc-master.tar.gz
glibc-master.tar.bz2
math: Remove an extra semicolon in math function declarationsHEADmaster
Commit 6bc301672bfbd ("math: Remove __XXX math functions from installed math.h [BZ #32418]") left an extra semicolon after macro expansion. For instance the ceil declaration after expansion is: extern double ceil (double __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__));; This chokes very naive parsers like gauche c-wrapper. Fix that by removing that extra semicolon in the macro. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'math/bits')
-rw-r--r--math/bits/mathcalls-macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/bits/mathcalls-macros.h b/math/bits/mathcalls-macros.h
index 1ef07f1..321ae00 100644
--- a/math/bits/mathcalls-macros.h
+++ b/math/bits/mathcalls-macros.h
@@ -34,7 +34,7 @@
#define __MATHCALLX(function,suffix, args, attrib) \
__MATHDECLX (_Mdouble_,function,suffix, args, attrib)
#define __MATHDECLX(type, function,suffix, args, attrib) \
- __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib);
+ __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib)
#define __MATHDECL_1_IMPL(type, function, suffix, args) \
extern type __MATH_PRECNAME(function,suffix) args __THROW
#define __MATHDECL_1(type, function, suffix, args) \