shithub: scc

ref: 8ad82c1a61620e3b865bfbe937b4ff9440383091
dir: /src/libmach/objdel.c/

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

#include <scc/mach.h>

#include "libmach.h"

void
objdel(Obj *obj)
{
	objfree(obj, TARGETDEL | GENERICDEL);
	free(obj);
}