shithub: scc

ref: 8927186e41ee97ea7d82e448bbdbd02f67b4b6dc
dir: /src/libmach/pc2line.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

int
pc2line(Obj *obj, unsigned long long pc, char *fname, int *ln)
{
	return (*obj->ops->pc2line)(obj, pc, fname, ln);
}