diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-31 04:32:02 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-31 04:32:02 +0000 |
commit | 47fc17d8a96970bc36dd7b9d4567c2c2ac102c78 (patch) | |
tree | 9de1562dd433cf86283034100bc2728e680e7a0e /MdePkg/Library/BaseLib/Ebc | |
parent | a0f1b047fa1f42559486f7112c504812e3f0adfc (diff) | |
download | edk2-platforms-47fc17d8a96970bc36dd7b9d4567c2c2ac102c78.tar.xz |
Use #include "XXX.h" for module internal header files.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6330 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/Ebc')
-rw-r--r-- | MdePkg/Library/BaseLib/Ebc/CpuBreakpoint.c | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/Ebc/SwitchStack.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/Ebc/CpuBreakpoint.c b/MdePkg/Library/BaseLib/Ebc/CpuBreakpoint.c index 837c204cf3..214e2f5a4c 100644 --- a/MdePkg/Library/BaseLib/Ebc/CpuBreakpoint.c +++ b/MdePkg/Library/BaseLib/Ebc/CpuBreakpoint.c @@ -12,7 +12,7 @@ **/
-#include <BaseLibInternals.h>
+#include "BaseLibInternals.h"
extern
UINT64
diff --git a/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c b/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c index f2001393f0..da2481a443 100644 --- a/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c +++ b/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c @@ -15,7 +15,7 @@ **/
-#include <BaseLibInternals.h>
+#include "BaseLibInternals.h"
/**
Saves the current CPU context that can be restored with a call to LongJump() and returns 0.
diff --git a/MdePkg/Library/BaseLib/Ebc/SwitchStack.c b/MdePkg/Library/BaseLib/Ebc/SwitchStack.c index c9b2955e23..e79c117123 100644 --- a/MdePkg/Library/BaseLib/Ebc/SwitchStack.c +++ b/MdePkg/Library/BaseLib/Ebc/SwitchStack.c @@ -12,7 +12,7 @@ **/
-#include <BaseLibInternals.h>
+#include "BaseLibInternals.h"
/**
Transfers control to a function starting with a new stack.
|