mirror of
https://github.com/SCST-project/scst.git
synced 2026-09-25 01:14:24 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/3.4.x@8896 d57e44dd-8a1f-0410-8b47-8ef2f437770f
12 lines
202 B
C
12 lines
202 B
C
#include <linux/module.h>
|
|
#include <linux/net.h>
|
|
|
|
static int __init modinit(void)
|
|
{
|
|
int (*f)(struct socket *, struct msghdr *, size_t, int) = sock_recvmsg;
|
|
|
|
return f != NULL;
|
|
}
|
|
|
|
module_init(modinit);
|