1
1

- We're using uint16_t, uint32_t, and friends,

so #include <stdint.h> if we have it...

This commit was SVN r20835.
Этот коммит содержится в:
Rainer Keller 2009-03-21 01:26:27 +00:00
родитель 0fcc23c2ad
Коммит be66cc2279
4 изменённых файлов: 17 добавлений и 1 удалений

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

@ -29,6 +29,10 @@
#define OPAL_HASH_TABLE_H
#include "opal_config.h"
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include "opal/class/opal_list.h"
BEGIN_C_DECLS

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

@ -21,6 +21,9 @@
#include "opal_config.h"
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

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

@ -28,6 +28,11 @@
#define _ORTE_NAME_FNS_H_
#include "orte_config.h"
#ifdef HAVE_STDINT_h
#include <stdint.h>
#endif
#include "orte/types.h"
#include "opal/class/opal_list.h"

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

@ -27,12 +27,16 @@
#define _ORTE_PROC_INFO_H_
#include "orte_config.h"
#include "orte/types.h"
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include "orte/types.h"
#include "opal/dss/dss_types.h"
BEGIN_C_DECLS