shithub: scc

ref: 6d3d7af1e88c1e466579c95b6538d0f2c9bebd8a
dir: /src/libmach/writeobj.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

int
writeobj(Obj *obj, Map *map, FILE *fp)
{
	return (obj->ops->write)(obj, map, fp);
}