ref: 3e5e7c470c58ff0b76e6cabc83691897ca4d4e93
dir: /src/libmach/objpos.c/
#include <stdio.h>
#include <scc/mach.h>
#include "libmach.h"
int
objpos(Obj *obj, FILE *fp, long pos)
{
if (fseek(fp, obj->pos, SEEK_SET) == EOF)
return 0;
if (fseek(fp, pos, SEEK_CUR) < 0)
return 0;
return 1;
}