2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Kill MinGW warning.

[SVN r18831]
This commit is contained in:
Vladimir Prus
2003-06-18 05:54:21 +00:00
parent 5e265d154b
commit bbdfabee4a
2 changed files with 10 additions and 4 deletions

View File

@@ -3,14 +3,17 @@
#include "newstr.h"
#include "pathsys.h"
#ifdef NT
#include <limits.h>
// MinGW on windows declares PATH_MAX in limits.h
#if defined(NT) && ! defined(__GNUC__)
#include <direct.h>
#define PATH_MAX _MAX_PATH
#else
#include <unistd.h>
#endif
#include <limits.h>
LIST*
pwd(void)

View File

@@ -3,14 +3,17 @@
#include "newstr.h"
#include "pathsys.h"
#ifdef NT
#include <limits.h>
// MinGW on windows declares PATH_MAX in limits.h
#if defined(NT) && ! defined(__GNUC__)
#include <direct.h>
#define PATH_MAX _MAX_PATH
#else
#include <unistd.h>
#endif
#include <limits.h>
LIST*
pwd(void)