1
1

adding protection. dont know how this was missed in the whole big prtection commit

This commit was SVN r3343.
Этот коммит содержится в:
Prabhanjan Kambadur 2004-10-26 15:47:15 +00:00
родитель 13b9c39958
Коммит 05d6b30d66
3 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -12,9 +12,15 @@
#include <stdio.h> #include <stdio.h>
#include <ctype.h> #include <ctype.h>
#if HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif
#if HAVE_NETDB_H
#include <netdb.h> #include <netdb.h>
#endif
#if HAVE_SYS_PARAM_H
#include <sys/param.h> #include <sys/param.h>
#endif
#include <errno.h> #include <errno.h>
#include "runtime/runtime.h" #include "runtime/runtime.h"

Просмотреть файл

@ -8,8 +8,12 @@
#include <string> #include <string>
#include <map> #include <map>
#if HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif
#if HAVE_SYS_PARAM_H
#include <sys/param.h> #include <sys/param.h>
#endif
#include "class/ompi_value_array.h" #include "class/ompi_value_array.h"
#include "util/printf.h" #include "util/printf.h"

Просмотреть файл

@ -11,6 +11,7 @@
#include "mca/base/base.h" #include "mca/base/base.h"
#include "tools/ompi_info/ompi_info.h" #include "tools/ompi_info/ompi_info.h"
#include "util/printf.h"
using namespace std; using namespace std;
using namespace ompi_info; using namespace ompi_info;