diff options
Diffstat (limited to 'mpi')
-rw-r--r-- | mpi/mpi.c | 8 | ||||
-rw-r--r-- | mpi/mpi.h | 4 |
2 files changed, 4 insertions, 8 deletions
@@ -84,14 +84,6 @@ static unsigned int s_mp_defprec = MP_DEFPREC; /* }}} */ -/* {{{ Comparison constants */ - -#define MP_LT -1 -#define MP_EQ 0 -#define MP_GT 1 - -/* }}} */ - /* {{{ Constant strings */ /* Constant strings returned by mp_strerror() */ @@ -42,6 +42,10 @@ #define MP_UNDEF -5 /* answer is undefined */ #define MP_LAST_CODE MP_UNDEF +#define MP_LT -1 +#define MP_EQ 0 +#define MP_GT 1 + #include "mpi-types.h" /* Included for compatibility... */ |