]> git.saurik.com Git - apple/xnu.git/blame - tests/sr_entitlement_helper.c
xnu-7195.50.7.100.1.tar.gz
[apple/xnu.git] / tests / sr_entitlement_helper.c
CommitLineData
f427ee49
A
1#include <unistd.h>
2#include <stdlib.h>
3#include <stdio.h>
4
5/*
6 * This is a test helper that just has to run for a while.
7 */
8int
9main(int argc, char **argv)
10{
11 printf("Hello, world.\n");
12 sleep(15);
13 printf("That's all folks.\n");
14 exit(0);
15}