llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/fputc_putc_putchar.cpp

14 lines
246 B
C++

// RUN: %clangxx -g %s -o %t && %run %t | FileCheck %s
// CHECK: abc
#include <assert.h>
#include <stdio.h>
int main(void) {
assert(fputc('a', stdout) != EOF);
assert(putc('b', stdout) != EOF);
assert(putchar('c') != EOF);
return 0;
}