summaryrefslogtreecommitdiffstats
path: root/mpi/mpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpi/mpi.c')
-rw-r--r--mpi/mpi.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/mpi/mpi.c b/mpi/mpi.c
index 0b5e622f..c52e47bd 100644
--- a/mpi/mpi.c
+++ b/mpi/mpi.c
@@ -10,11 +10,18 @@
*/
#include "config.h"
-#include "mpi.h"
+#if MP_IOFUNC
+#include <stdio.h>
+#include <ctype.h>
+#endif
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
+#include "mpi.h"
+#if MP_ARGCHK == 2
+#include <assert.h>
+#endif
#define MAX(A, B) ((A) > (B) ? (A) : (B))
#define MIN(A, B) ((A) < (B) ? (A) : (B))