mirror of https://github.com/0intro/conterm
10 lines
91 B
C
10 lines
91 B
C
|
#include "u.h"
|
||
|
#include "libc.h"
|
||
|
|
||
|
ulong
|
||
|
getcallerpc(void *a)
|
||
|
{
|
||
|
return ((ulong*)a)[-1];
|
||
|
}
|
||
|
|