diff options
| author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-02 17:53:21 +0100 |
|---|---|---|
| committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-02 17:53:21 +0100 |
| commit | 55488db3f978dce56ed45836bb72cba827e095b6 (patch) | |
| tree | 4e30ae0aca4004b5ff032275bc5819c33573d1c2 /runtime/klee-libc/strcoll.c | |
| parent | 8d7627bc4a7f86c361a843f5c9f2e95eb1b2b848 (diff) | |
| download | klee-55488db3f978dce56ed45836bb72cba827e095b6.tar.gz | |
Use C instead of C++ comments in C files to silence compiler warnings.
Diffstat (limited to 'runtime/klee-libc/strcoll.c')
| -rw-r--r-- | runtime/klee-libc/strcoll.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/klee-libc/strcoll.c b/runtime/klee-libc/strcoll.c index 73d59f89..8f78b0b3 100644 --- a/runtime/klee-libc/strcoll.c +++ b/runtime/klee-libc/strcoll.c @@ -1,15 +1,15 @@ -//===-- strcoll.c ---------------------------------------------------------===// +/*===-- 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. +/* according to the manpage, this is equiv in the POSIX/C locale. */ int strcoll(const char *s1, const char *s2) { return strcmp(s1,s2); } |
