Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
arne
/
linux-btrfs
/
c3b92c8787367a8bb53d57d9789b558f1295cc96
/
.
/
arch
/
powerpc
/
math-emu
/
frsqrte.c
blob: 1d0a3a0fd0e6d42f7117e3295ddd5de2e98d7c3f [
file
] [
log
] [
blame
]
#include
<linux/types.h>
#include
<linux/errno.h>
#include
<asm/uaccess.h>
int
frsqrte
(
void
*
frD
,
void
*
frB
)
{
#ifdef
DEBUG
printk
(
"%s: %p %p\n"
,
__func__
,
frD
,
frB
);
#endif
return
0
;
}