shithub: drawcpu

ref: 56e529d5e9a213be7a9738f2254fc4c31f46359f
dir: /getcallerpc.c/

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

uintptr
getcallerpc(void *a)
{
	USED(a);
	return (uintptr)__builtin_extract_return_addr(__builtin_return_address(0));
}