diff options
author | wollman <wollman@FreeBSD.org> | 1996-01-04 20:29:06 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-01-04 20:29:06 +0000 |
commit | 073b9e3f1cf7ec63651de6ad336031854aee5eb7 (patch) | |
tree | 2411626ed7374334e784e96be191a5310d065b4c /sys/conf/param.c | |
parent | eaa960586ee654591bb60ce2bc4dd4a2259d2183 (diff) | |
download | FreeBSD-src-073b9e3f1cf7ec63651de6ad336031854aee5eb7.zip FreeBSD-src-073b9e3f1cf7ec63651de6ad336031854aee5eb7.tar.gz |
Convert SYSV IPC to new-style options. (I hope I got everything...)
The LKMs will need an extra file, to come later.
Diffstat (limited to 'sys/conf/param.c')
-rw-r--r-- | sys/conf/param.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c index 605065d..b99f78a 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -36,9 +36,11 @@ * SUCH DAMAGE. * * @(#)param.c 8.2 (Berkeley) 1/21/94 - * $Id: param.c,v 1.12 1995/07/29 11:38:39 bde Exp $ + * $Id: param.c,v 1.13 1995/12/10 13:44:55 phk Exp $ */ +#include "opt_sysvipc.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/socket.h> @@ -57,10 +59,10 @@ #include <sys/shm.h> #endif #ifdef SYSVSEM -#include "sys/sem.h" +#include <sys/sem.h> #endif #ifdef SYSVMSG -#include "sys/msg.h" +#include <sys/msg.h> #endif /* |