diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-23 20:54:18 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-23 20:54:18 +0000 |
commit | 8d9c612aa2fe93cb83165f3d153f7420913e3a82 (patch) | |
tree | 8fb1ab31b04530979acbfcc9f5690ef606c4f430 /lkm | |
parent | 0c2aae450cbd4f42903032698794a47bb16f5c2b (diff) |
Remove a static that is wrong
Diffstat (limited to 'lkm')
-rw-r--r-- | lkm/ipl/stub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lkm/ipl/stub.c b/lkm/ipl/stub.c index 1467fdc54c0..410b5a03547 100644 --- a/lkm/ipl/stub.c +++ b/lkm/ipl/stub.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stub.c,v 1.1 1996/02/25 19:20:26 mickey Exp $ */ +/* $OpenBSD: stub.c,v 1.2 1996/08/23 20:54:17 niklas Exp $ */ #include <sys/param.h> #include <sys/systm.h> @@ -7,7 +7,7 @@ #include <sys/exec.h> #include <sys/lkm.h> -static cdev_decl(ipl); +cdev_decl(ipl); static struct cdevsw ipl_cdevsw = cdev_gen_ipf(1,ipl); MOD_DEV("ipl", LM_DT_CHAR, -1, &ipl_cdevsw ); |