summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Foundation
diff options
context:
space:
mode:
authorrsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524>2010-06-23 06:55:56 +0000
committerrsun3 <rsun3@6f19259b-4bc3-4df7-8a09-765794883524>2010-06-23 06:55:56 +0000
commitc5eef36d690b41d8bd83a9f29dc69f861a9e482e (patch)
tree9ceec4c2c92e030d76ad890350f4d8ec6a3e9382 /EdkCompatibilityPkg/Foundation
parentc5b16b1b0b1887fef763160272d4904f8f1cb849 (diff)
Add back the removed pair of "#ifndef VA_START" and "#endif" in recent check-in to avoid macro redefinition.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10595 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation')
-rw-r--r--EdkCompatibilityPkg/Foundation/Include/EfiStdArg.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Include/EfiStdArg.h b/EdkCompatibilityPkg/Foundation/Include/EfiStdArg.h
index bbec17b6e..69b4567ae 100644
--- a/EdkCompatibilityPkg/Foundation/Include/EfiStdArg.h
+++ b/EdkCompatibilityPkg/Foundation/Include/EfiStdArg.h
@@ -108,6 +108,9 @@ typedef __builtin_va_list VA_LIST;
#define VA_END(Marker) __builtin_va_end (Marker)
#else
+
+#ifndef VA_START
+
///
/// Variable used to traverse the list of arguments. This type can vary by
/// implementation and could be an array or structure.
@@ -165,3 +168,5 @@ typedef CHAR8 *VA_LIST;
#endif
#endif
+
+#endif