12d4be7aaSRichard Lowe /*
22d4be7aaSRichard Lowe  * This file and its contents are supplied under the terms of the
32d4be7aaSRichard Lowe  * Common Development and Distribution License ("CDDL"), version 1.0.
42d4be7aaSRichard Lowe  * You may only use this file in accordance with the terms of version
52d4be7aaSRichard Lowe  * 1.0 of the CDDL.
62d4be7aaSRichard Lowe  *
72d4be7aaSRichard Lowe  * A full copy of the text of the CDDL should have accompanied this
82d4be7aaSRichard Lowe  * source.  A copy of the CDDL is also available via the Internet at
92d4be7aaSRichard Lowe  * http://www.illumos.org/license/CDDL.
102d4be7aaSRichard Lowe  */
112d4be7aaSRichard Lowe 
122d4be7aaSRichard Lowe /*
132d4be7aaSRichard Lowe  * Copyright 2012, Richard Lowe.
142d4be7aaSRichard Lowe  */
152d4be7aaSRichard Lowe 
162d4be7aaSRichard Lowe #include <stdio.h>
172d4be7aaSRichard Lowe #include <unistd.h>
182d4be7aaSRichard Lowe 
192d4be7aaSRichard Lowe int
test(long a,long b,long c,long d)202d4be7aaSRichard Lowe test(long a, long b, long c, long d)
212d4be7aaSRichard Lowe {
222d4be7aaSRichard Lowe 	printf("%ld %ld %ld %ld\n", a, b, c, d);
232d4be7aaSRichard Lowe 	for (;;)
242d4be7aaSRichard Lowe 		sleep(60);
252d4be7aaSRichard Lowe }
262d4be7aaSRichard Lowe 
272d4be7aaSRichard Lowe int
main(int argc,char ** argv)282d4be7aaSRichard Lowe main(int argc, char **argv)
292d4be7aaSRichard Lowe {
302d4be7aaSRichard Lowe 	test(1, 2, 3, 4);
312d4be7aaSRichard Lowe 	return (0);
322d4be7aaSRichard Lowe }
33