1
1

- For memcpy and memset need string.h

This commit was SVN r21259.
This commit is contained in:
Rainer Keller 2009-05-21 22:36:06 +00:00
parent 98bdba786a
commit 225a1d6d8e
2 changed files with 7 additions and 0 deletions

View File

@ -29,6 +29,9 @@
#include "ompi_config.h"
#include <stdio.h>
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_SCHED_H
#include <sched.h>
#endif

View File

@ -18,6 +18,10 @@
#include "ompi_config.h"
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "ompi/constants.h"
#include "ompi/communicator/communicator.h"
#include "ompi/datatype/convertor.h"