shithub: drawcpu

ref: 8d93ccdbb2a2dee8d2eb1387da1b316fdf84b208
dir: /posix-mips/getcallerpc.c/

View raw version
#include "u.h"
#include "libc.h"

uintptr
getcallerpc(void *a)
{
	return ((ulong*)a)[-1];
}