Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
ea71b10a3d18e5589f44b836a83003a6e741d6bb
/
.
/
arch
/
powerpc
/
math-emu
/
fre.c
blob: 584b16f53304c3605fd027ba403f7c88268f0900 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#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
;
}