home *** CD-ROM | disk | FTP | other *** search
- /*
- $Id: space.c,v 2.5 90/08/26 11:35:49 sw Exp $
- */
-
- #include "config.h"
-
- #ifdef CLED
-
- #include "sys/types.h"
- #include "sys/tty.h"
- #include "sys/termio.h"
- #include "sys/cledio.h"
- #include "sys/cled.h"
-
- #if CLED_CNTLS != 1
- # include "ERROR: cled must have just one controller"
- #endif
-
- #if !MULTI_LB || !defined NCLEPROCS
- # undef NCLEPROCS
- # define NCLEPROCS 1
- #endif
-
- int cle_ttys = {CLED_UNITS};
- int cle_leds = {CLED_UNITS*NCLEPROCS};
-
- struct led_buf cle_buffers[CLED_UNITS];
- struct tty_buf cle_ttybuf[CLED_UNITS*NCLEPROCS];
-
- #endif
-