shithub: scc

ref: 435e07d3136a39d28016e829142b70315d059719
dir: /inc/coff32/reloc.h/

View raw version
/* This file is inspired in the book "Understanding and using COFF" */

struct reloc {
	long r_vaddr;           /* address of reference */
	long r_symndx;          /* index into symbol table */
	unsignedd short r_type; /* relocation type */
};