1
1

Add missing include files for x86 builds.

This commit was SVN r8710.
Этот коммит содержится в:
George Bosilca 2006-01-17 13:22:08 +00:00
родитель 61daf52344
Коммит bd5bcdc8a3
2 изменённых файлов: 10 добавлений и 2 удалений

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

@ -20,6 +20,9 @@
#include <stdio.h>
#include <errno.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif /* HAVE_STDLIB_H */
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
@ -32,6 +35,9 @@
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif /* HAVE_STRING_H */
#include "opal/runtime/opal.h"
#include "opal/include/constants.h"

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

@ -6,7 +6,9 @@
#include "opal/util/keyval/keyval_lex.h"
#include "opal/util/output.h"
#include "opal/threads/mutex.h"
#ifdef HAVE_STRING_H
#include <string.h>
#endif /* HAVE_STRING_H */
static const char *keyval_filename;
static opal_keyval_parse_fn_t keyval_callback;