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