diff options
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) { |