shithub: scc

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