156160Sru/*
242660Smarkm * CDDL HEADER START
342660Smarkm *
456160Sru * The contents of this file are subject to the terms of the
542660Smarkm * Common Development and Distribution License (the "License").
642660Smarkm * You may not use this file except in compliance with the License.
742660Smarkm *
842660Smarkm * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
942660Smarkm * or http://www.opensolaris.org/os/licensing.
1042660Smarkm * See the License for the specific language governing permissions
1142660Smarkm * and limitations under the License.
1242660Smarkm *
1342660Smarkm * When distributing Covered Code, include this CDDL HEADER in each
1442660Smarkm * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1542660Smarkm * If applicable, add the following below this CDDL HEADER, with the
1642660Smarkm * fields enclosed by brackets "[]" replaced with your own identifying
1742660Smarkm * information: Portions Copyright [yyyy] [name of copyright owner]
1842660Smarkm *
1942660Smarkm * CDDL HEADER END
2042660Smarkm */
2142660Smarkm
2242660Smarkm/*
2342660Smarkm * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
2442660Smarkm * Use is subject to license terms.
2542660Smarkm */
2642660Smarkm
2742660Smarkm#pragma ident	"%Z%%M%	%I%	%E% SMI"
2842660Smarkm
2942660Smarkmint
3042660Smarkmbaz(void)
3142660Smarkm{
3242660Smarkm	return (8);
3342660Smarkm}
3442660Smarkm
3542660Smarkmint
3642660Smarkmmain(int argc, char **argv)
3742660Smarkm{
3842660Smarkm	for (;;) {
3942660Smarkm		baz();
4042660Smarkm	}
4142660Smarkm
4256160Sru	return (0);
4356160Sru}
4456160Sru