shithub: scc

ref: e6a90cd2d996bc93d89c52d6cc0b1b222105568a
dir: /src/libmach/objreset.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

extern delfun_t delv[];

int
objreset(Obj *obj)
{
	int fmt;
	delfun_t fn;

	fmt = FORMAT(obj->type);
	if (fmt < NFORMATS)
		return -1;
	fn = delv[fmt];
	(*fn)(obj);
	objfree(obj, FREESYM | FREESECT);
	return 0;
}