shithub: scc

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