a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi/*
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * This file and its contents are supplied under the terms of the
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * Common Development and Distribution License ("CDDL"), version 1.0.
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * You may only use this file in accordance with the terms of version
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * 1.0 of the CDDL.
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi *
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * A full copy of the text of the CDDL should have accompanied this
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * source. A copy of the CDDL is also available via the Internet at
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * http://www.illumos.org/license/CDDL.
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi */
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi/*
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * Copyright 2013 (c) Joyent, Inc. All rights reserved.
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi */
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi/*
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi * We're linked against libc which has types, though we do not.
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi */
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi#include <unistd.h>
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchiint
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchimain(void)
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi{
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi for (;;) {
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi sleep(1000);
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi }
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi /*NOTREACHED*/
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi return (0);
a386cc11a86ecb60f5a48078d22c1500e2ad003eRobert Mustacchi}