Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_exynos9820
/
8f15a5670734c8b6e95122e7918c7887f9c1db1b
/
.
/
arch
/
powerpc
/
math-emu
/
frsqrtes.c
blob: a036f7b7140c59a5bc3b477c37ff7341b709b2bd [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<linux/types.h>
#include
<linux/errno.h>
#include
<linux/uaccess.h>
int
frsqrtes
(
void
*
frD
,
void
*
frB
)
{
#ifdef
DEBUG
printk
(
"%s: %p %p\n"
,
__func__
,
frD
,
frB
);
#endif
return
0
;
}