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