13 lines
193 B
C
13 lines
193 B
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", __FUNCTION__, frD, frB);
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|