diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/DivU64x64Remainder.c')
-rw-r--r-- | MdePkg/Library/BaseLib/DivU64x64Remainder.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseLib/DivU64x64Remainder.c b/MdePkg/Library/BaseLib/DivU64x64Remainder.c index 94dc2b1a6a..e068e97f37 100644 --- a/MdePkg/Library/BaseLib/DivU64x64Remainder.c +++ b/MdePkg/Library/BaseLib/DivU64x64Remainder.c @@ -6,9 +6,6 @@ **/
-
-
-
#include "BaseLibInternals.h"
/**
@@ -33,9 +30,9 @@ UINT64
EFIAPI
DivU64x64Remainder (
- IN UINT64 Dividend,
- IN UINT64 Divisor,
- OUT UINT64 *Remainder OPTIONAL
+ IN UINT64 Dividend,
+ IN UINT64 Divisor,
+ OUT UINT64 *Remainder OPTIONAL
)
{
ASSERT (Divisor != 0);
|