diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-04 17:01:58 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-04 17:01:58 +0000 |
commit | 6a138c666a94ea0ba709540eb2623d5866537e32 (patch) | |
tree | 3b86c2fb83d20f990d3b7fddda937da0bb5af893 /Tools | |
parent | 2df858f7e2d231dd5968a25d32d8a6093e3d9f01 (diff) | |
download | edk2-platforms-6a138c666a94ea0ba709540eb2623d5866537e32.tar.xz |
Do not check __STDC_VERSION__ for gcc.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2047 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/CCode/Source/Include/X64/ProcessorBind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/CCode/Source/Include/X64/ProcessorBind.h b/Tools/CCode/Source/Include/X64/ProcessorBind.h index f865ce8790..8cbf4915f3 100644 --- a/Tools/CCode/Source/Include/X64/ProcessorBind.h +++ b/Tools/CCode/Source/Include/X64/ProcessorBind.h @@ -61,7 +61,7 @@ #endif
-#if (__STDC_VERSION__ < 199901L)
+#if !defined(__GNUC__) && (__STDC_VERSION__ < 199901L)
//
// No ANSI C 2000 stdint.h integer width declarations, so define equivalents
//
|