Fix PATH_MAX definition after remarks in r231917 (MI)

llvm-svn: 232008
This commit is contained in:
Ilia K 2015-03-12 04:18:47 +00:00
parent 92f473927f
commit 299819c458
3 changed files with 3 additions and 4 deletions

View File

@ -16,13 +16,12 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <limits.h>
#include <fcntl.h>
#include <string>
#endif // _MSC_VER
#include "Platform.h" // CODETAG_IOR_SIGNALS
#include "Driver.h"
#include "Driver.h" // for PATH_MAX
#ifdef _MSC_VER
#include <lldb\Host\windows\getopt\GetOptInc.h>

View File

@ -35,7 +35,6 @@
#else
#include <unistd.h> // For the ::access()
#endif // _WIN32
#include <limits.h> // for PATH_MAX
// In-house headers:
#include "MICmnLLDBDebuggerHandleEvents.h"
@ -50,7 +49,7 @@
#include "MICmnStreamStderr.h"
#include "MIUtilDebug.h"
#include "MIDriver.h"
#include "Platform.h" // for PATH_MAX on Windows
#include "Platform.h" // for PATH_MAX
//++ ------------------------------------------------------------------------------------
// Details: CMICmnLLDBDebuggerHandleEvents constructor.

View File

@ -89,6 +89,7 @@ extern sighandler_t signal(int sig, sighandler_t);
#else
#include <inttypes.h>
#include <limits.h>
#include <getopt.h>
#include <libgen.h>