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