浏览代码

Always prefer the external <stdarg.h> for MSVC compilation

The __builtin_va_###() intrinsics apply only to GCC-like compilers and
MSVC's <stdarg.h> works just fine with gnu-efi.
Without this patch, one has to define GNU_EFI_USE_EXTERNAL_STDARG to
make gnu-efi work with a Microsoft toolchain, which is annoying...
Pete Batard 4 年之前
父节点
当前提交
ebdde0bc4b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      inc/efistdarg.h

+ 1 - 1
inc/efistdarg.h

@@ -19,7 +19,7 @@ Revision History
 
 --*/
 
-#ifndef GNU_EFI_USE_EXTERNAL_STDARG
+#if !defined(GNU_EFI_USE_EXTERNAL_STDARG) && !defined(_MSC_VER)
 typedef __builtin_va_list va_list;
 
 # define va_start(v,l)	__builtin_va_start(v,l)