conterm/posix-mips/getcallerpc.c
Russ Cox c0c120e2d1 add
2005-12-29 23:50:49 +00:00

9 lines
90 B
C

#include "u.h"
#include "libc.h"
ulong
getcallerpc(void *a)
{
return ((ulong*)a)[-1];
}