]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/xnu_quick_test/helpers/sleep.c
xnu-2782.40.9.tar.gz
[apple/xnu.git] / tools / tests / xnu_quick_test / helpers / sleep.c
1 /* Helper binary for the execve tests. Added for PR-4607285 */
2 #include <unistd.h>
3 int main()
4 {
5 sleep(120);
6 }