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