summaryrefslogtreecommitdiff
path: root/src/test-mp.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-02-06 17:18:22 +0100
committerraveit65 <[email protected]>2020-03-10 12:27:05 +0100
commitab02da75a6bd398c23a035354848100687d54dc1 (patch)
treeee806910645f5d992f48a82c7a8b8d89bd695e52 /src/test-mp.c
parent6492d06d01c1b6b8bca3efa2445b926e7b738c8d (diff)
downloadmate-calc-ab02da75a6bd398c23a035354848100687d54dc1.tar.bz2
mate-calc-ab02da75a6bd398c23a035354848100687d54dc1.tar.xz
Remove warnings: function declaration isn’t a prototype
Diffstat (limited to 'src/test-mp.c')
-rw-r--r--src/test-mp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test-mp.c b/src/test-mp.c
index 78b1a5b..14edadd 100644
--- a/src/test-mp.c
+++ b/src/test-mp.c
@@ -88,7 +88,7 @@ test_integer(int number)
static void
-test_numbers()
+test_numbers(void)
{
test_integer(0);
test_integer(1);
@@ -131,7 +131,7 @@ try(const char *string, bool result, bool expected)
static void
-test_mp()
+test_mp(void)
{
MPNumber zero = mp_new();
MPNumber one = mp_new();