1237834Smm/*
2237834Smm * CDDL HEADER START
3237834Smm *
4237834Smm * The contents of this file are subject to the terms of the
5237834Smm * Common Development and Distribution License (the "License").
6237834Smm * You may not use this file except in compliance with the License.
7237834Smm *
8237834Smm * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9237834Smm * or http://www.opensolaris.org/os/licensing.
10237834Smm * See the License for the specific language governing permissions
11237834Smm * and limitations under the License.
12237834Smm *
13237834Smm * When distributing Covered Code, include this CDDL HEADER in each
14237834Smm * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15237834Smm * If applicable, add the following below this CDDL HEADER, with the
16237834Smm * fields enclosed by brackets "[]" replaced with your own identifying
17237834Smm * information: Portions Copyright [yyyy] [name of copyright owner]
18237834Smm *
19237834Smm * CDDL HEADER END
20237834Smm */
21237834Smm
22237834Smm/*
23237834Smm * Copyright (c) 2011, Joyent, Inc. All rights reserved.
24237834Smm */
25237834Smm
26237834Smm#pragma D option quiet
27237834Smm
28237834Smmtick-1ms
29237834Smm/i++ <= 100/
30237834Smm{
31237834Smm	@ = llquantize(i, 10, 0, 10, 10);
32237834Smm}
33237834Smm
34237834Smmtick-1ms
35237834Smm/i > 100/
36237834Smm{
37237834Smm	exit(0);
38237834Smm}
39