Sign in
coral
/
linux-mtk
/
390a22ff42a2d24089848ea0467122e1eef36d65
/
.
/
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
;
}