dmach.h 696 B

1234567891011121314151617181920212223
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /***************************************************************/
  6. /* */
  7. /* Definition for table that maps a name on an intable index */
  8. /* */
  9. /***************************************************************/
  10. #ifndef NORCSID
  11. #define RCS_DMACH "$Id$"
  12. #endif
  13. typedef struct {
  14. char *ma_name ; /* The name of the machine */
  15. int ma_index ;
  16. } dmach ;
  17. extern dmach massoc[] ;
  18. extern char intable[] ;