shithub: scc

ref: 352fd1411b9c35e90d824162229a6eb32dd9a7e2
dir: /src/libmach/delobj.c/

View raw version
#include <stdio.h>
#include <stdlib.h>

#include <scc/mach.h>

#include "libmach.h"

void
delobj(Obj *obj)
{
	(*obj->ops->del)(obj);
	free(obj);
}