shithub: scc

ref: 6e9d1522e50e81ab34916a0cf02fd838db7771c8
dir: /src/libmach/objpos.c/

View raw version
#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;
}