This commit is contained in:
Russ Cox
2005-12-29 23:50:49 +00:00
parent bae94a73be
commit c0c120e2d1
5 changed files with 511 additions and 0 deletions

8
posix-mips/getcallerpc.c Normal file
View File

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