diff options
Diffstat (limited to 'sys/kern/sysv_msg.c')
-rw-r--r-- | sys/kern/sysv_msg.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/kern/sysv_msg.c b/sys/kern/sysv_msg.c index 09ed9ab..3eaa6b5 100644 --- a/sys/kern/sysv_msg.c +++ b/sys/kern/sysv_msg.c @@ -1,4 +1,4 @@ -/* $Id: sysv_msg.c,v 1.4 1995/05/30 08:06:01 rgrimes Exp $ */ +/* $Id: sysv_msg.c,v 1.5 1995/07/29 11:40:13 bde Exp $ */ /* * Implementation of SVID messages @@ -26,6 +26,13 @@ #include <sys/msg.h> #include <sys/malloc.h> +/* + * System initialization + */ + +extern void msginit(); /* should be static*/ +SYSINIT(sysv_msg, SI_SUB_SYSV_MSG, SI_ORDER_FIRST, msginit, NULL) + #define MSG_DEBUG #undef MSG_DEBUG_OK |