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