ref: cc8fd34873b779bedd6d54445fae80e3fb27ce13
dir: /src/libmach/objfree.c/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <scc/mach.h>
#include "libmach.h"
void
objdel(Obj *obj)
{
free(obj->secs);
free(obj->syms);
free(obj);
}