summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/math-emu/fres.c
blob: 211c30d0145f6674f75e8841e31e2130f7852fb8 (plain)
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
fres(void *frD, void *frB)
{
#ifdef DEBUG
	printk("%s: %p %p\n", __func__, frD, frB);
#endif
	return -ENOSYS;
}