lib9: add getcallerpc.c (fixes build)

This commit is contained in:
Russ Cox 2020-01-08 22:27:29 -05:00
parent a18741729c
commit 323e1a8fac

13
src/lib9/getcallerpc.c Normal file
View file

@ -0,0 +1,13 @@
#include <u.h>
#include <libc.h>
/*
* On gcc and clang, getcallerpc is a macro invoking a compiler builtin.
* If the macro in libc.h did not trigger, there's no implementation.
*/
#undef getcallerpc
ulong
getcallerpc(void *v)
{
return 1;
}