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/putchar.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/putchar.c')
-rw-r--r-- | runtime/klee-libc/putchar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/klee-libc/putchar.c b/runtime/klee-libc/putchar.c index 497402a6..bee2d2d7 100644 --- a/runtime/klee-libc/putchar.c +++ b/runtime/klee-libc/putchar.c @@ -1,16 +1,16 @@ -//===-- putchar.c ---------------------------------------------------------===// +/*===-- putchar.c ---------------------------------------------------------===// // // The KLEE Symbolic Virtual Machine // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // -//===----------------------------------------------------------------------===// +//===----------------------------------------------------------------------===*/ #include <stdio.h> #include <unistd.h> -// Some header may #define putchar. +/* Some header may #define putchar. */ #undef putchar int putchar(int c) { |