20 lines
536 B
C
20 lines
536 B
C
/***************************************************************/
|
|
/* */
|
|
/* Definition for table that maps a name on an intable index */
|
|
/* */
|
|
/***************************************************************/
|
|
|
|
#ifndef NORCSID
|
|
#define RCS_DMACH "$Header$"
|
|
#endif
|
|
|
|
|
|
typedef struct {
|
|
char *ma_name ; /* The name of the machine */
|
|
int ma_index ;
|
|
} dmach ;
|
|
|
|
extern dmach massoc[] ;
|
|
|
|
extern char intable[] ;
|