shithub: scc

ref: 04eaa4bdf25f5d142a47eed13dff69a5cf4497e1
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);
}