ref: b9d7c95aa5bf9e06fc7d6a58cd5d0c600f128bf3
dir: /src/libmach/objdel.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);
obj->syms = NULL;
obj->secs = NULL;
memset(obj->htab, 0, sizeof(obj->htab));
}