Skip to content

Commit

Permalink
[libgcc] Change __divmoddi4 from int64 [unknown] to int64_t
Browse files Browse the repository at this point in the history
Matches the header file libgcc.h and solves

  __divmoddi4.c:3:56: error: unknown type name ‘int64’

Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
warpcoil authored and mcb30 committed Jul 21, 2020
1 parent 4277942 commit cede0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libgcc/__divmoddi4.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "libgcc.h"

__libgcc int64_t __divmoddi4(int64_t num, int64_t den, int64 *rem_p)
__libgcc int64_t __divmoddi4(int64_t num, int64_t den, int64_t *rem_p)
{
int minus = 0;
int64_t v;
Expand Down

0 comments on commit cede0c5

Please sign in to comment.