about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/strcoll.c
blob: 8f78b0b370a26a86975d936696ae4250a55e282f (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);
}