strcoll.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR 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 }