EN JA
MODULE_VERSION(9)
MODULE_VERSION(9) FreeBSD Kernel Developer's Manual MODULE_VERSION(9)

NAME

MODULE_VERSIONset kernel module version

SYNOPSIS

#include < sys/param.h>
#include < sys/module.h>

MODULE_VERSION( name, int version);

DESCRIPTION

The MODULE_VERSION() macro sets the version of the module called name. Other kernel modules can then depend on this module (see MODULE_DEPEND(9)).

EXAMPLES

MODULE_VERSION(foo, 1);

AUTHORS

This manual page was written by Alexander Langer <alex@FreeBSD.org>.
March 11, 2001 FreeBSD