xref: /inferno-os/utils/ic/machcap.c (revision a93f6c888f6d530420fbb54e2f7fa4572cdc5208)
1 #include "gc.h"
2 
3 int
machcap(Node * n)4 machcap(Node *n)
5 {
6 	if(n == Z)	/* test */
7 		return thechar == 'j';
8 	return 0;
9 }
10