home *** CD-ROM | disk | FTP | other *** search
- *** /sys/sun/str_conf.c- Tue Jun 25 22:05:47 1991
- --- /sys/sun/str_conf.c Wed Jun 26 09:21:32 1991
- ***************
- *** 6,11 ****
- --- 6,13 ----
- * Copyright (c) 1986 by Sun Microsystems, Inc.
- */
-
- + #include "slip.h"
- +
- #include <sys/param.h>
- #include <sys/systm.h>
- #include <sys/conf.h>
- ***************
- *** 48,59 ****
- --- 50,72 ----
- #if NAUDIOAMD > 0
- extern struct streamtab audio_79C30_info;
- #endif
- + #if NSLIP > 0
- + extern struct streamtab slipencode;
- + extern struct streamtab streams_ip;
- + #endif
-
- +
- extern struct streamtab ldtrinfo;
- extern struct streamtab ttycompatinfo;
-
- struct fmodsw fmodsw[] =
- {
- +
- + #if NSLIP > 0
- + { "slipen", &slipencode },
- + { "str_ip", &streams_ip },
- + #endif
- +
- #if NNBUF > 0
- { "nbuf", &nb_info },
- #endif
- ***************
- *** 91,96 ****
- --- 104,112 ----
- { "", 0 },
- #endif VDDRV
- { "", 0 }
- +
- +
- +
- };
-
- int fmodcnt = sizeof (fmodsw) / sizeof (fmodsw[0]) - 1;
-