aboutsummaryrefslogtreecommitdiff
path: root/src/libmp/port/mptole.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmp/port/mptole.c')
-rw-r--r--src/libmp/port/mptole.c8
1 files changed, 4 insertions, 4 deletions
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 <mp.h>
#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;