From cbeb0b26e4c7caa8d1b47de791a7418dc20a4567 Mon Sep 17 00:00:00 2001 From: rsc Date: Sat, 1 Apr 2006 19:24:03 +0000 Subject: Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms. --- src/libmp/port/mptole.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libmp/port/mptole.c') diff --git a/src/libmp/port/mptole.c b/src/libmp/port/mptole.c index 9421d5f6..0b676ef6 100644 --- a/src/libmp/port/mptole.c +++ b/src/libmp/port/mptole.c @@ -2,10 +2,10 @@ #include #include "dat.h" -// convert an mpint into a little endian byte array (least significant byte first) +/* convert an mpint into a little endian byte array (least significant byte first) */ -// return number of bytes converted -// if p == nil, allocate and result array +/* return number of bytes converted */ +/* if p == nil, allocate and result array */ int mptole(mpint *b, uchar *p, uint n, uchar **pp) { @@ -23,7 +23,7 @@ mptole(mpint *b, uchar *p, uint n, uchar **pp) return -1; memset(p, 0, n); - // special case 0 + /* special case 0 */ if(b->top == 0){ if(n < 1) return -1; -- cgit v1.2.3