blob: 73d59f8914d731c437321db06d2bfea14a425a70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//===-- strcoll.c ---------------------------------------------------------===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <string.h>
// according to the manpage, this is equiv in the POSIX/C locale.
int strcoll(const char *s1, const char *s2) {
return strcmp(s1,s2);
}
|