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