ref: 8d5f6bbcb69f614eb5a8eae090cfa10981cd373a
dir: /src/libmach/readobj.c/
#include <stdio.h> #include <scc/mach.h> #include "libmach.h" int readobj(Obj *obj, FILE *fp) { long off; if ((off = ftell(fp)) == EOF) return -1; obj->pos = off; return (*obj->ops->read)(obj, fp); }