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