Skip to content

Commit 6f5df26

Browse files
committed
fix file headers & footers
1 parent 58e9084 commit 6f5df26

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

bn_mp_decr.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ int mp_decr(mp_int *a)
4040
}
4141
return mp_sub_d(a, 1uL,a);
4242
}
43-
44-
4543
#endif
46-
/* ref: \$Format:\%D$ */
47-
/* git commit: \$Format:\%H$ */
48-
/* commit time: \$Format:\%ai$ */
44+
45+
/* ref: $Format:%D$ */
46+
/* git commit: $Format:%H$ */
47+
/* commit time: $Format:%ai$ */

bn_mp_incr.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ int mp_incr(mp_int *a)
3535
}
3636
return mp_add_d(a, 1uL,a);
3737
}
38-
3938
#endif
40-
/* ref: \$Format:\%D$ */
41-
/* git commit: \$Format:\%H$ */
42-
/* commit time: \$Format:\%ai$ */
39+
40+
/* ref: $Format:%D$ */
41+
/* git commit: $Format:%H$ */
42+
/* commit time: $Format:%ai$ */

bn_mp_iseven.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
* Michael Fromberger but has been written from scratch with
1010
* additional optimizations in place.
1111
*
12-
* The library is free for all purposes without any express
13-
* guarantee it works.
12+
* SPDX-License-Identifier: Unlicense
1413
*/
1514

1615
int mp_iseven(const mp_int *a)

bn_mp_isodd.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
* Michael Fromberger but has been written from scratch with
1010
* additional optimizations in place.
1111
*
12-
* The library is free for all purposes without any express
13-
* guarantee it works.
12+
* SPDX-License-Identifier: Unlicense
1413
*/
1514

1615
int mp_isodd(const mp_int *a)

0 commit comments

Comments
 (0)