diff options
Diffstat (limited to 'runtime/klee-libc/strcmp.c')
-rw-r--r-- | runtime/klee-libc/strcmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/klee-libc/strcmp.c b/runtime/klee-libc/strcmp.c index 6b8c4e85..cdb002c7 100644 --- a/runtime/klee-libc/strcmp.c +++ b/runtime/klee-libc/strcmp.c @@ -1,11 +1,11 @@ -//===-- strcmp.c ----------------------------------------------------------===// +/*===-- strcmp.c ----------------------------------------------------------===// // // The KLEE Symbolic Virtual Machine // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // -//===----------------------------------------------------------------------===// +//===----------------------------------------------------------------------===*/ int strcmp(const char *a, const char *b) { while (*a && *a == *b) |