Wrap the #include of <stdbool.h> in an #ifndef __cplusplus.

This should fix the MSVC build.

llvm-svn: 191357
This commit is contained in:
Peter Collingbourne 2013-09-25 07:11:58 +00:00
parent 2218fcf390
commit 090874b25d

View File

@ -16,7 +16,9 @@
#ifndef LLVM_C_LTO_H
#define LLVM_C_LTO_H
#ifndef __cplusplus
#include <stdbool.h>
#endif
#include <stddef.h>
#include <unistd.h>