diff options
Diffstat (limited to 'lib/umoddi3.c')
| -rw-r--r-- | lib/umoddi3.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/lib/umoddi3.c b/lib/umoddi3.c index adb4b0e75dff2..9de1a64fdad10 100644 --- a/lib/umoddi3.c +++ b/lib/umoddi3.c @@ -11,14 +11,15 @@   *   * ===----------------------------------------------------------------------===   */ +#include "abi.h"  #include "int_lib.h" -du_int __udivmoddi4(du_int a, du_int b, du_int* rem); +du_int COMPILER_RT_ABI __udivmoddi4(du_int a, du_int b, du_int* rem);  /* Returns: a % b */ -du_int +COMPILER_RT_ABI du_int  __umoddi3(du_int a, du_int b)  {      du_int r; | 
