about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/klee-choose.c
diff options
context:
space:
mode:
authorMartin Nowack <martin@se.inf.tu-dresden.de>2014-02-07 22:30:19 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2015-04-01 15:13:56 +0100
commitc711d470f4382e350748bccdc295fa002d9aaef5 (patch)
tree0590d150baccabb5d87566c422f8e63467072dd2 /runtime/klee-libc/klee-choose.c
parent388b52bcf283022733c4160b448a92ab54f02472 (diff)
downloadklee-c711d470f4382e350748bccdc295fa002d9aaef5.tar.gz
[runtime] Fix comments to c style for c files and headers
Diffstat (limited to 'runtime/klee-libc/klee-choose.c')
-rw-r--r--runtime/klee-libc/klee-choose.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/klee-libc/klee-choose.c b/runtime/klee-libc/klee-choose.c
index 181aedaa..44e5cea2 100644
--- a/runtime/klee-libc/klee-choose.c
+++ b/runtime/klee-libc/klee-choose.c
@@ -1,11 +1,11 @@
-//===-- klee-choose.c -----------------------------------------------------===//
+/*===-- klee-choose.c -----------------------------------------------------===//
 //
 //                     The KLEE Symbolic Virtual Machine
 //
 // This file is distributed under the University of Illinois Open Source
 // License. See LICENSE.TXT for details.
 //
-//===----------------------------------------------------------------------===//
+//===----------------------------------------------------------------------===*/
 
 #include "klee/klee.h"
 
@@ -13,7 +13,7 @@ uintptr_t klee_choose(uintptr_t n) {
   uintptr_t x;
   klee_make_symbolic(&x, sizeof x, "klee_choose");
 
-  // NB: this will *not* work if they don't compare to n values.
+  /* NB: this will *not* work if they don't compare to n values. */
   if(x >= n)
     klee_silent_exit(0);
   return x;