1/* SPDX-License-Identifier: BSD-2-Clause */ 2/* 3 * Copyright (c) 2014, STMicroelectronics International N.V. 4 */ 5 6#include <asm.S> 7 8/* 9 * signed ret_idivmod_values(signed quot, signed rem); 10 * return quotient and remaining the EABI way (regs r0,r1) 11 */ 12FUNC ret_idivmod_values , : 13 bx lr 14END_FUNC ret_idivmod_values 15 16/* 17 * unsigned ret_uidivmod_values(unsigned quot, unsigned rem); 18 * return quotient and remaining the EABI way (regs r0,r1) 19 */ 20FUNC ret_uidivmod_values , : 21 bx lr 22END_FUNC ret_uidivmod_values 23