Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
mcgrof
/
linker-tables
/
1e052b4d366436af18e9ec4a27dd309d2dd8cb36
/
.
/
include
/
linux
/
module.h
blob: b59e55f3f04e4914b636c44388fe71b668c528e2 [
file
]
#ifndef
_LINUX_MODULE_H
#define
_LINUX_MODULE_H
#include
<linux/init.h>
#define
module_init
(
x
)
__initcall
(
x
);
#define
module_exit
(
x
)
__exitcall
(
x
);
struct
module
{
int
(*
init
)(
void
);
void
(*
exit
)(
void
);
};
#endif
/* _LINUX_MODULE_H */