Index: uspace/lib/c/arch/ppc32/src/rtld/reloc.c
===================================================================
--- uspace/lib/c/arch/ppc32/src/rtld/reloc.c	(revision 687108b4a1c947a40607394ea693f7863b0585c6)
+++ uspace/lib/c/arch/ppc32/src/rtld/reloc.c	(revision a949f4ae07227222cc7ff520baf64ebe6ef3d307)
@@ -418,4 +418,15 @@
 }
 
+/** Get the adress of a function.
+ *
+ * @param sym Symbol
+ * @param m Module in which the symbol is located
+ * @return Address of function
+ */
+void *func_get_addr(elf_symbol_t *sym, module_t *m)
+{
+	return symbol_get_addr(sym, m, __tcb_get());
+}
+
 /** @}
  */
