shithub: scc

ref: 51f244d2ec7cce0cd116df73b29e3c9ff5cc3425
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 (fsetpos(fp, &obj->pos))
		return 0;
	if (fseek(fp, pos, SEEK_CUR) < 0)
		return 0;
	return 1;
}