]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[libgcc] Change __divmoddi4 from int64 [unknown] to int64_t
authorBobby Lockwood <core@warp.co.il>
Mon, 19 Dec 2016 12:01:15 +0000 (12:01 +0000)
committerMichael Brown <mcb30@ipxe.org>
Tue, 21 Jul 2020 13:33:32 +0000 (14:33 +0100)
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>
src/libgcc/__divmoddi4.c

index 95e328d06413f45a42abcf81ea5015621bab1dd4..c00acb5ab5bf894f19b482783cb464e965e0c461 100644 (file)
@@ -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;