machcap.c 88 B

123456789
  1. #include "gc.h"
  2. int
  3. machcap(Node *n)
  4. {
  5. if(n == Z) /* test */
  6. return 1;
  7. return 0;
  8. }