about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/toupper.c
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2015-04-02 17:53:21 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2015-04-02 17:53:21 +0100
commit55488db3f978dce56ed45836bb72cba827e095b6 (patch)
tree4e30ae0aca4004b5ff032275bc5819c33573d1c2 /runtime/klee-libc/toupper.c
parent8d7627bc4a7f86c361a843f5c9f2e95eb1b2b848 (diff)
downloadklee-55488db3f978dce56ed45836bb72cba827e095b6.tar.gz
Use C instead of C++ comments in C files to silence compiler warnings.
Diffstat (limited to 'runtime/klee-libc/toupper.c')
-rw-r--r--runtime/klee-libc/toupper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/klee-libc/toupper.c b/runtime/klee-libc/toupper.c
index 37e5f9d6..5030b5cc 100644
--- a/runtime/klee-libc/toupper.c
+++ b/runtime/klee-libc/toupper.c
@@ -1,11 +1,11 @@
-//===-- toupper.c ---------------------------------------------------------===//
+/*===-- toupper.c ---------------------------------------------------------===//
 //
 //                     The KLEE Symbolic Virtual Machine
 //
 // This file is distributed under the University of Illinois Open Source
 // License. See LICENSE.TXT for details.
 //
-//===----------------------------------------------------------------------===//
+//===----------------------------------------------------------------------===*/
 
 int toupper(int ch) {
   if ( (unsigned int)(ch - 'a') < 26u )