Defined MAP_FAILED for all the platforms that don't have it.

This commit is contained in:
briano%netscape.com 1999-05-01 02:10:39 +00:00
Родитель a64b87c23f
Коммит a06b94a174
2 изменённых файлов: 18 добавлений и 0 удалений

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

@ -26,6 +26,15 @@
#elif defined(XP_UNIX)
#include <sys/mman.h>
#include <fcntl.h>
#ifndef MAP_FAILED
#if defined (__STDC__) && __STDC__
#define MAP_FAILED ((void *) -1)
#else
#define MAP_FAILED ((char *) -1)
#endif
#endif
#endif
/******************************************************************************/

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

@ -26,6 +26,15 @@
#elif defined(XP_UNIX)
#include <sys/mman.h>
#include <fcntl.h>
#ifndef MAP_FAILED
#if defined (__STDC__) && __STDC__
#define MAP_FAILED ((void *) -1)
#else
#define MAP_FAILED ((char *) -1)
#endif
#endif
#endif
/******************************************************************************/