shithub: scc

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