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