]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/bn/bn_add.c
mark all block comments that need format preserving so that
[thirdparty/openssl.git] / crypto / bn / bn_add.c
index 9405163706aae5dc8064780a2ce879fece80ccdf..042103ccacaedf71682506bd3b0b828ab4533b7e 100644 (file)
@@ -69,7 +69,8 @@ int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
        bn_check_top(a);
        bn_check_top(b);
 
-       /*  a +  b      a+b
+       /*-
+        *  a +  b      a+b
         *  a + -b      a-b
         * -a +  b      b-a
         * -a + -b      -(a+b)
@@ -269,7 +270,8 @@ int BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
        bn_check_top(a);
        bn_check_top(b);
 
-       /*  a -  b      a-b
+       /*-
+        *  a -  b      a-b
         *  a - -b      a+b
         * -a -  b      -(a+b)
         * -a - -b      b-a