ref: 79dd4bd00f26488b4cb49b689878e9bd2c1711ad dir: /src/libmach/objdel.c/
#include <stdio.h> #include <stdlib.h> #include <scc/mach.h> #include "libmach.h" int objdel(Obj *obj) { if (objreset(obj) < 0) return -1; free(obj); }