mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
11 lines
190 B
C
11 lines
190 B
C
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <asm/uaccess.h>
|
|
|
|
int frsqrtes(void *frD, void *frB)
|
|
{
|
|
#ifdef DEBUG
|
|
printk("%s: %p %p\n", __func__, frD, frB);
|
|
#endif
|
|
return 0;
|
|
}
|