blob: 49ccf2cc6a5a88dc577a6977b90c24d88d5e1375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <linux/types.h>
#include <linux/errno.h>
#include <asm/uaccess.h>
int fre(void *frD, void *frB)
{
#ifdef DEBUG
printk("%s: %p %p\n", __func__, frD, frB);
#endif
return -ENOSYS;
}
|