]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/sanitizer_common/TestCases/Posix/putc_putchar_unlocked.cc
Vendor import of compiler-rt trunk r351319 (just before the release_80
[FreeBSD/FreeBSD.git] / test / sanitizer_common / TestCases / Posix / putc_putchar_unlocked.cc
1 // RUN: %clangxx -g %s -o %t && %run %t | FileCheck %s
2 // CHECK: bc
3
4 #include <assert.h>
5 #include <stdio.h>
6
7 int main(void) {
8   assert(putc_unlocked('b', stdout) != EOF);
9   assert(putchar_unlocked('c') != EOF);
10
11   return 0;
12 }