1
1
This commit was SVN r2155.
Этот коммит содержится в:
David Daniel 2004-08-15 23:54:30 +00:00
родитель b433fc3ad9
Коммит e865b75241
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -44,7 +44,7 @@ extern bool ompi_mpi_param_check;
/* /*
* Do we have <stdint.h>? * Do we have <stdint.h>?
*/ */
#if HAVE_STDINT_H #ifdef HAVE_STDINT_H
#include <stdint.h> #include <stdint.h>
#else #else
#include "ompi_stdint.h" #include "ompi_stdint.h"

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

@ -21,11 +21,11 @@
* Include what we can and define what is missing. * Include what we can and define what is missing.
*/ */
#if HAVE_INTTYPES_H #ifdef HAVE_INTTYPES_H
#include <inttypes.h> #include <inttypes.h>
#endif #endif
#if HAVE_SYS_TYPES_H #ifdef HAVE_SYS_TYPES_H
#include <sys/types.h> #include <sys/types.h>
#endif #endif