summaryrefslogtreecommitdiff
path: root/stdio
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-01-09 22:46:35 +0000
committerRoland McGrath <roland@gnu.org>1994-01-09 22:46:35 +0000
commit010d7abaf7cea4c39a7bdb2bd5cac839f2c79a71 (patch)
tree4c26a550ed463573cedd6e7093ce03d6ef01c76d /stdio
parent680b5dcbd32542f4708116a889e03440013ed49d (diff)
Formerly ../stdio/printf_fp.c.~5~
Diffstat (limited to 'stdio')
-rw-r--r--stdio/printf_fp.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/stdio/printf_fp.c b/stdio/printf_fp.c
index 5da46b96aa..f63e8c5c67 100644
--- a/stdio/printf_fp.c
+++ b/stdio/printf_fp.c
@@ -4,7 +4,7 @@
by Guy L. Steele, Jr. and Jon L. White, presented at the ACM SIGPLAN '90
Conference on Programming Language Design and Implementation.
-Copyright (C) 1992, 1993 Free Software Foundation, Inc.
+Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -692,7 +692,9 @@ DEFUN(__printf_fp, (s, info, args),
return done;
}
-static mpn_dump (str, p, size)
+#if DEBUG
+static void
+mpn_dump (str, p, size)
char *str;
mp_limb *p;
mp_size_t size;
@@ -705,3 +707,4 @@ static mpn_dump (str, p, size)
}
printf ("\n");
}
+#endif