ref: 51f244d2ec7cce0cd116df73b29e3c9ff5cc3425 dir: /src/libmach/objdel.c/
#include <stdio.h> #include <stdlib.h> #include <scc/mach.h> #include "libmach.h" void objdel(Obj *obj) { objfree(obj, TARGETDEL | GENERICDEL); free(obj); }