iPXE
Functions
__moddi3.c File Reference
#include "libgcc.h"

Go to the source code of this file.

Functions

__libgcc int64_t __moddi3 (int64_t num, int64_t den)
 

Function Documentation

◆ __moddi3()

__libgcc int64_t __moddi3 ( int64_t  num,
int64_t  den 
)

Definition at line 7 of file __moddi3.c.

8 {
9  int64_t v;
10 
11  (void) __divmoddi4(num, den, &v);
12  return v;
13 }
signed long long int64_t
Definition: stdint.h:18
__libgcc int64_t __divmoddi4(int64_t num, int64_t den, int64_t *rem_p)
Definition: __divmoddi4.c:3
char unsigned long * num
Definition: xenstore.h:17

References __divmoddi4(), and num.