ref: e12a1007fa3b9df81e20951314a1fc93f0707382
dir: /src/libmach/objstrip.c/
#include <stdio.h>
#include <scc/mach.h>
#include "libmach.h"
extern stripfun_t stripv[];
int
objstrip(Obj *obj)
{
int fmt;
stripfun_t fn;
fmt = FORMAT(obj->type);
if (fmt >= NFORMATS)
return -1;
fn = stripv[fmt];
(*fn)(obj);
objfree(obj, FREESYM);
return 0;
}