shithub: scc

ref: ccd1b1585da94843f04bbc7b8bf27ebace5cee3c
dir: /src/libmach/setindex.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

static long (*funv[])(int, long, Objsymdef *, FILE *) = {
	[COFF32] = coff32setidx,
};

long
setindex(int type, long nsyms, Objsymdef *head, FILE *fp)
{
	int fmt;

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

	return (*funv[fmt])(type, nsyms, head, fp);
}