git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
13 lines
189 B
C
13 lines
189 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", __func__, frD, frB);
|
|
#endif
|
|
return 0;
|
|
}
|