summaryrefslogtreecommitdiffstats
path: root/libtommath/mtest
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/mtest')
-rw-r--r--libtommath/mtest/logtab.h1
-rw-r--r--libtommath/mtest/mpi-config.h1
-rw-r--r--libtommath/mtest/mpi-types.h1
-rw-r--r--libtommath/mtest/mpi.c4
-rw-r--r--libtommath/mtest/mpi.h2
5 files changed, 1 insertions, 8 deletions
diff --git a/libtommath/mtest/logtab.h b/libtommath/mtest/logtab.h
index 68462bd..addd3ab 100644
--- a/libtommath/mtest/logtab.h
+++ b/libtommath/mtest/logtab.h
@@ -17,4 +17,3 @@ const float s_logv_2[] = {
0.169293808, 0.168613099, 0.167948779, 0.167300179, /* 60 61 62 63 */
0.166666667
};
-
diff --git a/libtommath/mtest/mpi-config.h b/libtommath/mtest/mpi-config.h
index dcdbd35..a347263 100644
--- a/libtommath/mtest/mpi-config.h
+++ b/libtommath/mtest/mpi-config.h
@@ -1,5 +1,4 @@
/* Default configuration for MPI library */
-/* $Id: mpi-config.h,v 1.1.1.1 2005/01/19 22:41:29 kennykb Exp $ */
#ifndef MPI_CONFIG_H_
#define MPI_CONFIG_H_
diff --git a/libtommath/mtest/mpi-types.h b/libtommath/mtest/mpi-types.h
index e097188..42ccfc3 100644
--- a/libtommath/mtest/mpi-types.h
+++ b/libtommath/mtest/mpi-types.h
@@ -13,4 +13,3 @@ typedef int mp_err;
#define MP_DIGIT_SIZE 2
#define DIGIT_FMT "%04X"
#define RADIX (MP_DIGIT_MAX+1)
-
diff --git a/libtommath/mtest/mpi.c b/libtommath/mtest/mpi.c
index 0517602..4566e89 100644
--- a/libtommath/mtest/mpi.c
+++ b/libtommath/mtest/mpi.c
@@ -5,8 +5,6 @@
Copyright (C) 1998 Michael J. Fromberger, All Rights Reserved
Arbitrary precision integer arithmetic library
-
- $Id: mpi.c,v 1.1.1.1 2005/01/19 22:41:29 kennykb Exp $
*/
#include "mpi.h"
@@ -91,7 +89,7 @@ static unsigned int s_mp_defprec = MP_DEFPREC;
/* {{{ Constant strings */
/* Constant strings returned by mp_strerror() */
-static const char *mp_err_string[] = {
+static const char *const mp_err_string[] = {
"unknown result code", /* say what? */
"boolean true", /* MP_OKAY, MP_YES */
"boolean false", /* MP_NO */
diff --git a/libtommath/mtest/mpi.h b/libtommath/mtest/mpi.h
index b7a8cb5..211421f 100644
--- a/libtommath/mtest/mpi.h
+++ b/libtommath/mtest/mpi.h
@@ -5,8 +5,6 @@
Copyright (C) 1998 Michael J. Fromberger, All Rights Reserved
Arbitrary precision integer arithmetic library
-
- $Id: mpi.h,v 1.1.1.1 2005/01/19 22:41:29 kennykb Exp $
*/
#ifndef _H_MPI_