1
1

Most of the files here require the string.h include on x86 platforms. So I add

it on a common place dps_internal.h protected by all the standard stuff.

This commit was SVN r5554.
Этот коммит содержится в:
George Bosilca 2005-05-01 03:50:23 +00:00
родитель bcd4797389
Коммит 6fd89c67b3
3 изменённых файлов: 7 добавлений и 2 удалений

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

@ -25,6 +25,13 @@
#include "dps/dps.h"
#if HAVE_STRING_H
# if !defined(STDC_HEADERS) && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#endif
#if defined(c_plusplus) || defined(__cplusplus)
extern "C" {
#endif

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

@ -20,7 +20,6 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <string.h>
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif

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

@ -21,7 +21,6 @@
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#include <string.h>
#include "mca/errmgr/errmgr.h"