summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/math-emu/fre.c
blob: b621a790aa67dbb10eb7c293b3803aa3e70b1c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
#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;
}