diff options
Diffstat (limited to 'arch/ppc/math-emu/frsqrte.c')
-rw-r--r-- | arch/ppc/math-emu/frsqrte.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/ppc/math-emu/frsqrte.c b/arch/ppc/math-emu/frsqrte.c new file mode 100644 index 000000000..d14995567 --- /dev/null +++ b/arch/ppc/math-emu/frsqrte.c @@ -0,0 +1,15 @@ +/* $Id: frsqrte.c,v 1.1 1999/08/23 18:59:58 cort Exp $ + */ + +#include <linux/types.h> +#include <linux/errno.h> +#include <asm/uaccess.h> + +int +frsqrte(void *frD, void *frB) +{ +#ifdef DEBUG + printk("%s: %p %p\n", __FUNCTION__, frD, frB); +#endif + return 0; +} |