summaryrefslogtreecommitdiff
path: root/otherlibs/num/nat_stubs.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/num/nat_stubs.c')
-rw-r--r--otherlibs/num/nat_stubs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/otherlibs/num/nat_stubs.c b/otherlibs/num/nat_stubs.c
index 22614e1317..7c4916abba 100644
--- a/otherlibs/num/nat_stubs.c
+++ b/otherlibs/num/nat_stubs.c
@@ -11,8 +11,6 @@
/* */
/***********************************************************************/
-/* $Id$ */
-
#include "caml/alloc.h"
#include "caml/config.h"
#include "caml/custom.h"
@@ -123,7 +121,8 @@ CAMLprim value is_digit_zero(value nat, value ofs)
CAMLprim value is_digit_normalized(value nat, value ofs)
{
return
- Val_bool(Digit_val(nat, Long_val(ofs)) & ((bngdigit)1 << (BNG_BITS_PER_DIGIT-1)));
+ Val_bool(Digit_val(nat, Long_val(ofs))
+ & ((bngdigit)1 << (BNG_BITS_PER_DIGIT-1)));
}
CAMLprim value is_digit_odd(value nat, value ofs)