shithub: scc

ref: 7edf451bf7accdac3edb62dbba35e0713072a9f0
dir: /src/libmach/getindex.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

extern getidxfun_t getidxv[];

long
getindex(int type, long *nsyms, Objsymdef **head, FILE *fp)
{
	int fmt;
	getidxfun_t fn;

	fmt = FORMAT(type);
	if (fmt >= NFORMATS)
		return -1;
	fn = getidxv[fmt];
	return (*fn)(type, nsyms, head, fp);
}