shithub: scc

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