shithub: scc

ref: dda941923a06fad72864abc97d933957137e90d1
dir: /src/libmach/objsect.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

extern getsectfun_t getsectv[];

int
objsect(Obj *obj)
{
	int fmt;
	getsectfun_t fn;

	fmt = FORMAT(obj->type);
	if (fmt >= NFORMATS)
		return -1;

	fn = getsectv[fmt];
	return  (*fn)(obj);
}