Sign in
gem5
/
arm
/
linux-arm64-legacy
/
353f8d1cd5b8540c1591f00a5cbd3aeca699cfcf
/
.
/
arch
/
ppc
/
math-emu
/
fres.c
blob: ec11e46d20afe7facb4178f053a1f77c362b8ed4 [
file
]
#include
<linux/types.h>
#include
<linux/errno.h>
#include
<asm/uaccess.h>
int
fres
(
void
*
frD
,
void
*
frB
)
{
#ifdef
DEBUG
printk
(
"%s: %p %p\n"
,
__FUNCTION__
,
frD
,
frB
);
#endif
return
-
ENOSYS
;
}