1266992Smarkj/*
2266992Smarkj * This file and its contents are supplied under the terms of the
3266992Smarkj * Common Development and Distribution License ("CDDL"), version 1.0.
4266992Smarkj * You may only use this file in accordance with the terms of version
5266992Smarkj * 1.0 of the CDDL.
6266992Smarkj *
7266992Smarkj * A full copy of the text of the CDDL should have accompanied this
8266992Smarkj * source.  A copy of the CDDL is also available via the Internet at
9266992Smarkj * http://www.illumos.org/license/CDDL.
10266992Smarkj */
11266992Smarkj
12266992Smarkj/*
13266992Smarkj * Copyright (c) 2013 Joyent, Inc.  All rights reserved.
14266992Smarkj */
15266992Smarkj
16266992Smarkj#pragma D option quiet
17266992Smarkj#pragma D option encoding=utf8
18266992Smarkj#pragma D option aggzoom
19266992Smarkj
20266992Smarkjtick-1ms
21266992Smarkj/i++ < 320/
22266992Smarkj{
23266992Smarkj	@ = lquantize(i, 0, 640, 1, i);
24266992Smarkj	@ = lquantize(641 - i, 0, 640, 1, i);
25266992Smarkj}
26266992Smarkj
27266992Smarkjtick-1ms
28266992Smarkj/i == 320/
29266992Smarkj{
30266992Smarkj	printa(@);
31266992Smarkj	exit(0);
32266992Smarkj}
33