xref: /plan9/sys/src/cmd/aux/na/na.h (revision 7dd7cddf99dd7472612f1413b4da293630e6b1bc)
1 #ifndef NA_H
2 #define NA_H
3 
4 struct na_patch {
5 	unsigned lwoff;
6 	unsigned char type;
7 };
8 
9 int na_fixup(unsigned long *script, unsigned long pa_script, unsigned long pa_reg,
10     struct na_patch *patch, int patches,
11     int (*externval)(int x, unsigned long *v));
12 
13 #endif
14