summaryrefslogtreecommitdiff
path: root/lib/printf-frexpl.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-10-07 22:10:35 +0200
committerBruno Haible <bruno@clisp.org>2007-10-07 22:10:35 +0200
commitc100c6342c673e5ef9fdaa2d6a7955eeadb6ca5a (patch)
treef58ba8ad59518e66cb60b3094a36a65b98214f46 /lib/printf-frexpl.h
parent1f9ee9c2dbc965ca2e2258c7bcda420b2ba3f764 (diff)
downloadgnulib-c100c6342c673e5ef9fdaa2d6a7955eeadb6ca5a.tar.gz
Rename parameter 'exp' to 'expptr', to avoid gcc warnings.
Diffstat (limited to 'lib/printf-frexpl.h')
-rw-r--r--lib/printf-frexpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/printf-frexpl.h b/lib/printf-frexpl.h
index 86ff7ec67b..6c2d214b6d 100644
--- a/lib/printf-frexpl.h
+++ b/lib/printf-frexpl.h
@@ -19,5 +19,5 @@
where exp >= LDBL_MIN_EXP - 1,
mantissa < 2.0,
if x is not a denormalized number then mantissa >= 1.0.
- Store exp and return mantissa. */
-extern long double printf_frexpl (long double x, int *exp);
+ Store exp in *EXPPTR and return mantissa. */
+extern long double printf_frexpl (long double x, int *expptr);