aboutsummaryrefslogtreecommitdiff
path: root/src/lib9
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib9')
-rw-r--r--src/lib9/getcallerpc.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib9/getcallerpc.c b/src/lib9/getcallerpc.c
new file mode 100644
index 00000000..3067f053
--- /dev/null
+++ b/src/lib9/getcallerpc.c
@@ -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;
+}