Include limits.h to make sure PATH_MAX is known on Solaris 10.

Patch by Joakim Johansson!

llvm-svn: 139743
This commit is contained in:
Bill Wendling 2011-09-14 21:49:42 +00:00
parent 3908f7f2b7
commit 7694b6d655

View File

@ -42,6 +42,9 @@
#if HAVE_STDIO_H
#include <stdio.h>
#endif
#if HAVE_LIMITS_H
#include <limits.h>
#endif
using namespace llvm;