Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
ea71b10a3d18e5589f44b836a83003a6e741d6bb
/
.
/
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
;
}