ref: fa095decfa65ce7fa2d03ad6fb1d75640c0803b1
dir: /src/libmach/coff32/coff32del.c/
#include <stdio.h> #include <stdlib.h> #include <scc/mach.h> #include "../libmach.h" #include "coff32.h" void coff32del(Obj *obj) { struct coff32 *coff = obj->data; if (coff) { free(coff->scns); free(coff->ents); free(coff->strtbl); } free(obj->data); obj->data = NULL; }