1 /* Device table. This table is indexed by major device number. It provides
2 * the link between major device numbers and the routines that process them.
3 */
4
5 typedef _PROTOTYPE (void (*dmap_t), (int task, message *m_ptr) );
6
7 extern struct dmap {
8 dmap_t dmap_open;
9 dmap_t dmap_rw;
10 dmap_t dmap_close;
11 int dmap_task;
12 } dmap[];
13
14