ARM: ntoab: Do not include __mesabi_uldiv for bootstrap tcc.

* lib/mes/ntoab.c (__mesabi_uldiv): Exclude for tinycc arm bootstrap.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2022-09-13 19:12:31 +02:00
parent a64e292ce2
commit b9ffa123c0
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* -*-comment-start: "//";comment-end:""-*- /* -*-comment-start: "//";comment-end:""-*-
* GNU Mes --- Maxwell Equations of Software * GNU Mes --- Maxwell Equations of Software
* Copyright © 2016,2017,2018,2019,2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> * Copyright © 2016,2017,2018,2019,2020,2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
* *
* This file is part of GNU Mes. * This file is part of GNU Mes.
* *
@ -23,7 +23,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#if __M2_PLANET__ || !(__MESC__ && __arm__) #if __M2_PLANET__ || (!(__MESC__ && __arm__) && !(__TINYC__ && __arm__ && BOOTSTRAP))
size_t size_t
__mesabi_uldiv (size_t a, size_t b, size_t *remainder) __mesabi_uldiv (size_t a, size_t b, size_t *remainder)
{ {