Skip to content

Commit 484004b

Browse files
committed
simple_spawn should be independent of ORTE.
1 parent f038fe6 commit 484004b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

orte/test/mpi/simple_spawn.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
#include "orte_config.h"
2-
31
#include <stdio.h>
42
#include <sys/types.h>
53
#include <unistd.h>
4+
#include <sys/param.h>
65

76
#include <mpi.h>
87

@@ -11,7 +10,7 @@ int main(int argc, char* argv[])
1110
int msg, rc;
1211
MPI_Comm parent, child;
1312
int rank, size;
14-
char hostname[OPAL_MAXHOSTNAMELEN];
13+
char hostname[MAXHOSTNAMELEN];
1514
pid_t pid;
1615

1716
pid = getpid();

0 commit comments

Comments
 (0)