summaryrefslogtreecommitdiff
path: root/misc/tst-efgcvt.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-12-27 20:26:07 +0000
committerAndreas Jaeger <aj@suse.de>2000-12-27 20:26:07 +0000
commitde149cdbaf9327b5dbb85b1a473fce5c6ec7951f (patch)
treecc14a903a8e159a33e86e8f15b309abd7fc3e65b /misc/tst-efgcvt.c
parent784d802ea2b7f156f59e86b77d4f17ea9effaaba (diff)
Make local functions static.
Diffstat (limited to 'misc/tst-efgcvt.c')
-rw-r--r--misc/tst-efgcvt.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/tst-efgcvt.c b/misc/tst-efgcvt.c
index f2edb9d912..49af1b058c 100644
--- a/misc/tst-efgcvt.c
+++ b/misc/tst-efgcvt.c
@@ -86,7 +86,7 @@ static testcase fcvt_tests[] =
{ -1.0, 0, 0, "" }
};
-void
+static void
output_error (const char *name, double value, int ndigit,
const char *exp_p, int exp_decpt, int exp_sign,
char *res_p, int res_decpt, int res_sign)
@@ -101,7 +101,7 @@ output_error (const char *name, double value, int ndigit,
}
-void
+static void
output_r_error (const char *name, double value, int ndigit,
const char *exp_p, int exp_decpt, int exp_sign, int exp_return,
char *res_p, int res_decpt, int res_sign, int res_return)
@@ -115,7 +115,7 @@ output_r_error (const char *name, double value, int ndigit,
++error_count;
}
-void
+static void
test (testcase tests[], efcvt_func efcvt, const char *name)
{
int no = 0;
@@ -136,7 +136,7 @@ test (testcase tests[], efcvt_func efcvt, const char *name)
}
}
-void
+static void
test_r (testcase tests[], efcvt_r_func efcvt_r, const char *name)
{
int no = 0;
@@ -160,7 +160,7 @@ test_r (testcase tests[], efcvt_r_func efcvt_r, const char *name)
}
}
-void
+static void
special (void)
{
int decpt, sign, res;