dmach.h 536 B

12345678910111213141516171819
  1. /***************************************************************/
  2. /* */
  3. /* Definition for table that maps a name on an intable index */
  4. /* */
  5. /***************************************************************/
  6. #ifndef NORCSID
  7. #define RCS_DMACH "$Header$"
  8. #endif
  9. typedef struct {
  10. char *ma_name ; /* The name of the machine */
  11. int ma_index ;
  12. } dmach ;
  13. extern dmach massoc[] ;
  14. extern char intable[] ;