lib9: add getcallerpc.c (fixes build)
This commit is contained in:
parent
a18741729c
commit
323e1a8fac
13
src/lib9/getcallerpc.c
Normal file
13
src/lib9/getcallerpc.c
Normal 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;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user