Sign in
android
/
kernel
/
common
/
9bc61f55585fd34c0972d49ea356947b0f948a13
/
.
/
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
;
}