scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

strcoll.c (109B)


      1 #include <string.h>
      2 
      3 #undef strcoll
      4 
      5 int
      6 strcoll(const char *s1, const char *s2)
      7 {
      8 	return strcmp(s1, s2);
      9 }