view leo-obj/tool/globals.c @ 139:acdf75463e30

tiobjd disasm: smarter logic for when the <end of section> line should be printed
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 07 Apr 2014 07:36:31 +0000
parents 87b82398a08b
children
line wrap: on
line source

/*
 * Definitions of global vars for the tiobjd program.
 */

#include <sys/types.h>

char *objfilename;
u_char *filemap;
size_t objfile_tot_size;

struct external_filehdr *filehdr_struct;
struct external_scnhdr *sections_raw;
unsigned nsections;
struct external_syment *symtab_raw;
unsigned nsymtab;
unsigned strtab_offset;

struct internal_scnhdr *sections;
struct internal_syment **symtab;