diff options
author | Reid Kleckner <rnk@google.com> | 2019-05-08 22:01:20 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-05-08 22:01:20 +0000 |
commit | 55fab1ff4806ed989086e4ced18a9611ec963a93 (patch) | |
tree | 6a9308fc72e9727d28339b9fead9a0759fd6644d /clang/lib/Headers/stdarg.h | |
parent | 6a85631d8713d778fc2cc7c55b3161e5283701dc (diff) | |
download | bcm5719-llvm-55fab1ff4806ed989086e4ced18a9611ec963a93.tar.gz bcm5719-llvm-55fab1ff4806ed989086e4ced18a9611ec963a93.zip |
Revert Include corecrt.h in stddef.h and vcruntime.h in stdarg.h to improve MS compatibility.
This reverts r360271 (git commit a0933bd8ec1515167ea653f7ee788b8bbde27d51)
There are concerns on the review that this breaks EFI builds and that
the transitive includes (sal.h) are actually heavy enough that we might
care.
llvm-svn: 360291
Diffstat (limited to 'clang/lib/Headers/stdarg.h')
-rw-r--r-- | clang/lib/Headers/stdarg.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/Headers/stdarg.h b/clang/lib/Headers/stdarg.h index 97b3c082ec8..0bc39408c1e 100644 --- a/clang/lib/Headers/stdarg.h +++ b/clang/lib/Headers/stdarg.h @@ -10,11 +10,6 @@ #ifndef __STDARG_H #define __STDARG_H -#if defined(_MSC_VER) -/* Include otherwise unneeded header for MSVC compatibility. */ -#include <vcruntime.h> -#endif - #ifndef _VA_LIST typedef __builtin_va_list va_list; #define _VA_LIST |