mirror of https://github.com/acidanthera/audk.git
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
This commit is contained in:
parent
2df858f7e2
commit
6a138c666a
|
@ -70,7 +70,7 @@
|
|||
#endif
|
||||
|
||||
|
||||
#if (__STDC_VERSION__ < 199901L)
|
||||
#if !defined(__GNUC__) && (__STDC_VERSION__ < 199901L)
|
||||
//
|
||||
// No ANSI C 2000 stdint.h integer width declarations, so define equivalents
|
||||
//
|
||||
|
|
|
@ -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
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue