ref: 381a14fc9775e9f2cabbac45a4586f55feefc39c
dir: /src/libmach/objwrite.c/
#include <stdio.h> #include <scc/mach.h> #include "libmach.h" extern writefun_t writev[]; int objwrite(Obj *obj, FILE *fp) { int fmt; writefun_t fn; fmt = FORMAT(obj->type); if (fmt >= NFORMATS) return -1; fn = writev[fmt]; if ((*fn)(obj, fp) < 0) return -1; return 0; }