1266989Smarkj/*
2266989Smarkj * This file and its contents are supplied under the terms of the
3266989Smarkj * Common Development and Distribution License ("CDDL"), version 1.0.
4266989Smarkj * You may only use this file in accordance with the terms of version
5266989Smarkj * 1.0 of the CDDL.
6266989Smarkj *
7266989Smarkj * A full copy of the text of the CDDL should have accompanied this
8266989Smarkj * source.  A copy of the CDDL is also available via the Internet at
9266989Smarkj * http://www.illumos.org/license/CDDL.
10266989Smarkj */
11266989Smarkj
12266989Smarkj/*
13266989Smarkj * Copyright 2013 (c) Joyent, Inc. All rights reserved.
14266989Smarkj */
15266989Smarkj
16266989Smarkj/*
17266989Smarkj * We're linked against libc which has types, though we do not.
18266989Smarkj */
19266989Smarkj#include <unistd.h>
20266989Smarkj
21266989Smarkjint
22266989Smarkjmain(void)
23266989Smarkj{
24266989Smarkj	for (;;) {
25266989Smarkj		sleep(1000);
26266989Smarkj	}
27266989Smarkj	/*NOTREACHED*/
28266989Smarkj	return (0);
29266989Smarkj}
30