repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel/denverton_ns: Remove unused memcpy_s function
[coreboot.git]
/
src
/
arch
/
arm
/
libgcc
/
libgcc.h
blob
91792ba0728a8478b9d8ce10067939049224d67c
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef __ARCH_ARM_LIBGCC_LIBGCC_H__
4
#define __ARCH_ARM_LIBGCC_LIBGCC_H__
5
6
#include <stdint.h>
7
8
uint64_t
__umoddi3
(
uint64_t
num
,
uint64_t
den
);
9
uint64_t
__udivmoddi4
(
uint64_t
num
,
uint64_t
den
,
uint64_t
*
rem
);
10
11
#endif