Sign in
gem5
/
arm
/
linux-arm64-legacy
/
7bdd21cef9e5dbc3d3a718c55bb3d0da024644da
/
.
/
arch
/
powerpc
/
math-emu
/
frsqrte.c
blob: a11ae18298507cc2c738801d9fe2ef863a15f1f7 [
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"
,
__FUNCTION__
,
frD
,
frB
);
#endif
return
0
;
}