repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git]
/
clang
/
test
/
Sema
/
pid_t.c
blob
7021e37a740fc716122a6d307cd12b422ce293ac
1
// RUN: %clang_cc1 -triple i586-pc-haiku -fsyntax-only -verify %s
2
// RUN: %clang_cc1 -triple i686-pc-linux -fsyntax-only -verify %s
3
4
// expected-no-diagnostics
5
6
#ifdef __HAIKU__
7
typedef
signed long
pid_t
;
8
#else
9
typedef
signed int
pid_t
;
10
#endif
11
pid_t
vfork
(
void
);