diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-11-14 07:35:57 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-11-14 07:35:57 +0000 |
| commit | b3e24f9ce91bb200d621c57bfa92eac473a435f9 (patch) | |
| tree | 9c94bad3e616d0070b577e174ae969aefd06ef32 /sys/modules/ibcs2 | |
| parent | a2c9d3c2906b57db1ee27ef76d5fdf366d043196 (diff) | |
Notes
Diffstat (limited to 'sys/modules/ibcs2')
| -rw-r--r-- | sys/modules/ibcs2/ibcs2.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/sys/modules/ibcs2/ibcs2.c b/sys/modules/ibcs2/ibcs2.c index 4db2adf65eb5..f7f9ec13477b 100644 --- a/sys/modules/ibcs2/ibcs2.c +++ b/sys/modules/ibcs2/ibcs2.c @@ -25,31 +25,27 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2.c,v 1.5 1995/10/28 12:35:03 peter Exp $ + * $Id: ibcs2.c,v 1.6 1995/11/13 07:18:27 bde Exp $ */ #include <sys/param.h> #include <sys/systm.h> +#include <sys/sysproto.h> #include <sys/conf.h> #include <sys/exec.h> #include <sys/sysent.h> #include <sys/lkm.h> -#include <sys/errno.h> -MOD_MISC("ibcs2_mod") +MOD_MISC(ibcs2); -int ibcs2_load __P((struct lkm_table *, int)); -int ibcs2_unload __P((struct lkm_table *, int)); -int ibcs2_init __P((struct lkm_table *, int, int)); - -int +static int ibcs2_load(struct lkm_table *lkmtp, int cmd) { uprintf("ibcs2 emulator installed\n"); return 0; } -int +static int ibcs2_unload(struct lkm_table *lkmtp, int cmd) { uprintf("ibcs2 emulator removed\n"); |
