mirror of
https://github.com/0intro/conterm
synced 2024-11-22 05:41:28 +03:00
9 lines
94 B
C
9 lines
94 B
C
#include "u.h"
|
|
#include "libc.h"
|
|
|
|
uintptr
|
|
getcallerpc(void *a)
|
|
{
|
|
return ((uintptr*)a)[-1];
|
|
}
|