Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
ba3fae06c7a4e80ab9d48a8a045b352da97cf23d
/
.
/
arch
/
powerpc
/
math-emu
/
frsqrte.c
blob: 7c2ce43750dc14e5efb803385a08e98d45ae3455 [
file
] [
log
] [
blame
]
#include
<linux/types.h>
#include
<linux/errno.h>
#include
<linux/uaccess.h>
int
frsqrte
(
void
*
frD
,
void
*
frB
)
{
#ifdef
DEBUG
printk
(
"%s: %p %p\n"
,
__func__
,
frD
,
frB
);
#endif
return
0
;
}