kernel_samsung_a53x/arch/powerpc/math-emu/frsqrtes.c
2024-06-15 16:02:09 -03:00

12 lines
228 B
C
Executable file

// SPDX-License-Identifier: GPL-2.0
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/uaccess.h>
int frsqrtes(void *frD, void *frB)
{
#ifdef DEBUG
printk("%s: %p %p\n", __func__, frD, frB);
#endif
return 0;
}