aboutsummaryrefslogtreecommitdiff
path: root/stdlib/cmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/cmp.c')
-rw-r--r--stdlib/cmp.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/stdlib/cmp.c b/stdlib/cmp.c
index 904f404b8c..3fd7eb21d4 100644
--- a/stdlib/cmp.c
+++ b/stdlib/cmp.c
@@ -27,14 +27,7 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
Return 1 if OP1 > OP2, 0 if they are equal, and -1 if OP1 < OP2. */
int
-#if __STDC__
mpn_cmp (mp_srcptr op1_ptr, mp_srcptr op2_ptr, mp_size_t size)
-#else
-mpn_cmp (op1_ptr, op2_ptr, size)
- mp_srcptr op1_ptr;
- mp_srcptr op2_ptr;
- mp_size_t size;
-#endif
{
mp_size_t i;
mp_limb_t op1_word, op2_word;