1
1

- Get rid of warnings w/ regard to bool on nec-compiler,

when using malloc_hooks as memory-mca.

This commit was SVN r12407.
Этот коммит содержится в:
Rainer Keller 2006-11-02 12:23:19 +00:00
родитель 1ba8f82cfd
Коммит f9083f2e29

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

@ -19,6 +19,15 @@
#ifndef OPAL_MEMORY_MEMORY_INTERNAL_H
#define OPAL_MEMORY_MEMORY_INTERNAL_H
#include "opal_config.h"
#ifdef HAVE_STDBOOL_H
# include <stdbool.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#define OPAL_MEMORY_FREE_SUPPORT 0x0001
#define OPAL_MEMORY_MALLOC_SUPPORT 0x0002
#define OPAL_MEMORY_CHUNK_SUPPORT 0x0004