shithub: scc

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