diff options
Diffstat (limited to 'src/test-mp.c')
-rw-r--r-- | src/test-mp.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test-mp.c b/src/test-mp.c index 1a8c0d7..f367093 100644 --- a/src/test-mp.c +++ b/src/test-mp.c @@ -27,7 +27,6 @@ static int passes = 0; static void pass(const char *format, ...) __attribute__((format(printf, 1, 2))); static void fail(const char *format, ...) __attribute__((format(printf, 1, 2))); - static void pass(const char *format, ...) { /* va_list args; @@ -53,7 +52,6 @@ static void fail(const char *format, ...) fails++; } - static void print_number(MPNumber *x) { @@ -86,7 +84,6 @@ test_integer(int number) mp_clear(&t); } - static void test_numbers(void) { @@ -119,7 +116,6 @@ test_numbers(void) test_string("16384.00006103515625"); } - static void try(const char *string, bool result, bool expected) { @@ -129,7 +125,6 @@ try(const char *string, bool result, bool expected) pass("%s -> %s", string, result ? "true" : "false"); } - static void test_mp(void) { @@ -219,7 +214,6 @@ test_mp(void) mp_clear(&minus_one); } - int main (void) { |