shithub: scc

ref: da6fca55d37c4e21f589dce2575b6da527382b4e
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 */
};