chiark / gitweb /
volume_id: provide libvolume_id.a file
[elogind.git] / klibc / klibc / strrchr.c
index 3b424640592b5c483b37bfc5fce995c98c315ee2..5a0cbe386e320672159e6d3458eaae895467ae44 100644 (file)
@@ -3,6 +3,7 @@
  */
 
 #include <string.h>
+#include <klibc/compiler.h>
 
 char *strrchr(const char *s, int c)
 {
@@ -16,3 +17,5 @@ char *strrchr(const char *s, int c)
 
   return (char *)found;
 }
+
+__ALIAS(char *, rindex, (const char *, int), strrchr)