mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-16 04:06:19 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/3.0.x@5580 d57e44dd-8a1f-0410-8b47-8ef2f437770f
9 lines
105 B
C
9 lines
105 B
C
#include <linux/module.h>
|
|
|
|
static int modinit(void)
|
|
{
|
|
return PRE_CFLAGS_MACRO;
|
|
}
|
|
|
|
module_init(modinit);
|