1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2
3extern int vfork(void);
4test() {
5  vfork();
6}
7