summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/sanitizer_common/TestCases/Posix/fputc_putc_putchar.cpp
blob: 7e786cd9ef374c37e0966a4308b8ff546446bc90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
}
OpenPOWER on IntegriCloud