aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/math-emu/frsqrte.c
blob: 7c2ce43750dc14e5efb803385a08e98d45ae3455 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/uaccess.h>

int
frsqrte(void *frD, void *frB)
{
#ifdef DEBUG
	printk("%s: %p %p\n", __func__, frD, frB);
#endif
	return 0;
}