Provide a reasonable value for PATH_MAX if the lldb headers don't provide it.

This commit is contained in:
Jim Ingham 2020-10-29 15:02:51 -07:00
parent 5d45f758f0
commit fa5a132767
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@
#include "common.h"
#if !defined(PATH_MAX)
#define PATH_MAX 4096
#endif
using namespace lldb;
void test(SBDebugger &dbg, std::vector<std::string> args) {