strcmp.S 301 B

123456789101112131415161718
  1. #include "_glibc_inc.h"
  2. #if __WORDSIZE == 32
  3. # if defined(__CONFIG_SPARC_V9B__)
  4. # include "sparc32/sparcv9b/strcmp.S"
  5. # else
  6. # include "sparc32/strcmp.S"
  7. # endif
  8. #else
  9. # include "sparc64/strcmp.S"
  10. #endif
  11. #ifndef __UCLIBC_HAS_LOCALE__
  12. strong_alias(strcmp,strcoll)
  13. libc_hidden_def(strcoll)
  14. #endif