diff U3 C:/Users/dmcdani1/AppData/Local/Temp/gdtoaimp.h-revBASE.svn001.tmp.h D:/Views/EDK2/Trunk/StdLib/LibC/gdtoa/gdtoaimp.h
--- C:/Users/dmcdani1/AppData/Local/Temp/gdtoaimp.h-revBASE.svn001.tmp.h	Mon Mar 11 11:00:30 2013
+++ D:/Views/EDK2/Trunk/StdLib/LibC/gdtoa/gdtoaimp.h	Tue Aug 05 16:46:14 2014
@@ -9,7 +9,7 @@
   Please send bug reports to David M. Gay (dmg at acm dot org,
   with " at " changed at "@" and " dot " changed to ".").
 
-  Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
+  Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
   This program and the accompanying materials are licensed and made available under
   the terms and conditions of the BSD License that accompanies this distribution.
   The full text of the license may be found at
@@ -179,8 +179,8 @@
 #include <stdint.h>
 #define Short   int16_t
 #define UShort uint16_t
-#define Long   EFI_LONG_T
-#define ULong  EFI_ULONG_T
+#define Long    int32_t
+#define ULong  uint32_t
 #define LLong   int64_t
 #define ULLong uint64_t
 
@@ -283,6 +283,13 @@
 Exactly one of IEEE_LITTLE_ENDIAN, IEEE_BIG_ENDIAN, VAX, or IBM should be defined.
 #endif
 
+/*  This union assumes that:
+      sizeof(double) == 8
+      sizeof(UINT32) == 4
+
+    If this is not the case, the type and dimension of the L member will
+    have to be modified.
+*/
 typedef union { double d; UINT32 L[2]; } U;
 
 #ifdef YES_ALIAS
@@ -296,13 +303,13 @@
 #endif
 #else /* !YES_ALIAS */
 #ifdef IEEE_LITTLE_ENDIAN
-#define word0(x) ( /* LINTED */ (U*)&x)->L[1]
-#define word1(x) ( /* LINTED */ (U*)&x)->L[0]
+#define word0(x)  ( /* LINTED */ (U*)&x)->L[1]
+#define word1(x)  ( /* LINTED */ (U*)&x)->L[0]
 #else
-#define word0(x) ( /* LINTED */ (U*)&x)->L[0]
-#define word1(x) ( /* LINTED */ (U*)&x)->L[1]
+#define word0(x)  ( /* LINTED */ (U*)&x)->L[0]
+#define word1(x)  ( /* LINTED */ (U*)&x)->L[1]
 #endif
-#define dval(x) ( /* LINTED */ (U*)&x)->d
+#define dval(x)   ( /* LINTED */ (U*)&x)->d
 #endif /* YES_ALIAS */
 
 /* The following definition of Storeinc is appropriate for MIPS processors.
diff U3 C:/Users/dmcdani1/AppData/Local/Temp/gdtoa.h-revBASE.svn002.tmp.h D:/Views/EDK2/Trunk/StdLib/LibC/gdtoa/gdtoa.h
--- C:/Users/dmcdani1/AppData/Local/Temp/gdtoa.h-revBASE.svn002.tmp.h	Wed Apr 27 14:42:16 2011
+++ D:/Views/EDK2/Trunk/StdLib/LibC/gdtoa/gdtoa.h	Tue Aug 05 16:45:23 2014
@@ -1,6 +1,13 @@
-/* $NetBSD: gdtoa.h,v 1.6.4.1.4.1 2008/04/08 21:10:55 jdc Exp $ */
+/** @file
 
-/****************************************************************
+  Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+  This program and the accompanying materials are licensed and made available under
+  the terms and conditions of the BSD License that accompanies this distribution.
+  The full text of the license may be found at
+  http://opensource.org/licenses/bsd-license.
+
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 
 The author of this software is David M. Gay.
 
@@ -26,6 +33,8 @@
 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
 THIS SOFTWARE.
 
+  $NetBSD: gdtoa.h,v 1.6.4.1.4.1 2008/04/08 21:10:55 jdc Exp
+
 ****************************************************************/
 
 /* Please send bug reports to David M. Gay (dmg at acm dot org,
@@ -38,10 +47,10 @@
 #include "arith.h"
 
 #ifndef Long
-#define Long EFI_LONG_T
+#define Long int32_t
 #endif
 #ifndef ULong
-#define ULong EFI_ULONG_T
+#define ULong uint32_t
 #endif
 #ifndef UShort
 #define UShort uint16_t
