shithub: scc

ref: 041d2d96655de6afaac6b20437df8897b03f6c92
dir: /src/libmach/coff32/coff32.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "../libmach.h"
#include "coff32.h"

struct objops coff32 = {
	.probe = coff32probe,
	.new = coff32new,
	.read = coff32read,
	.getidx = coff32getidx,
	.setidx = coff32setidx,
	.pc2line = coff32pc2line,
	.strip = coff32strip,
	.del = coff32del,
	.write = coff32write,
	.getsym = coff32getsym,
	.getsec = coff32getsec,
	.loadmap = coff32loadmap,
};