uClibc-0.9.31.1-export-strverscmp.patch 793 B

123456789101112131415161718192021222324252627282930
  1. From 139b8f0c673fed465d27f99c98568e5d5e1b9b72 Mon Sep 17 00:00:00 2001
  2. From: Denys Vlasenko <vda.linux@googlemail.com>
  3. Date: Fri, 4 Jun 2010 13:36:30 +0200
  4. Subject: [PATCH] strverscmp: I forgot to export it
  5. Result was:
  6. strverscmp.o:
  7. 000000ec T __GI_strverscmp
  8. i.e. no plain "strverscmp"!
  9. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
  10. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  11. ---
  12. libc/string/strverscmp.c | 1 +
  13. 1 files changed, 1 insertions(+), 0 deletions(-)
  14. diff --git a/libc/string/strverscmp.c b/libc/string/strverscmp.c
  15. index 74ae4c6..b19e8f0 100644
  16. --- a/libc/string/strverscmp.c
  17. +++ b/libc/string/strverscmp.c
  18. @@ -115,3 +115,4 @@ int strverscmp (const char *s1, const char *s2)
  19. return state;
  20. }
  21. }
  22. +libc_hidden_def(strverscmp)
  23. --
  24. 1.7.3.4