xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/pid_t.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple i586-pc-haiku -fsyntax-only -verify %s
2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple i686-pc-linux -fsyntax-only -verify %s
3*f4a2713aSLionel Sambuc 
4*f4a2713aSLionel Sambuc // expected-no-diagnostics
5*f4a2713aSLionel Sambuc 
6*f4a2713aSLionel Sambuc #ifdef __HAIKU__
7*f4a2713aSLionel Sambuc typedef signed long pid_t;
8*f4a2713aSLionel Sambuc #else
9*f4a2713aSLionel Sambuc typedef signed int pid_t;
10*f4a2713aSLionel Sambuc #endif
11*f4a2713aSLionel Sambuc pid_t	 vfork(void);