Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.2-rc7 13 lines 230 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/types.h> 3#include <linux/errno.h> 4#include <linux/uaccess.h> 5 6int 7fres(void *frD, void *frB) 8{ 9#ifdef DEBUG 10 printk("%s: %p %p\n", __func__, frD, frB); 11#endif 12 return -ENOSYS; 13}