Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: a5abba989deceb731047425812d268daf7536575 authored by Linus Torvalds on 08 March 2011, 05:09:37 UTC
Linux 2.6.38-rc8
Tip revision: a5abba9
frsqrte.c
#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", __func__, frD, frB);
#endif
	return 0;
}
back to top