tst.self.d revision 285830
160484Sobrien/*
2218822Sdim * CDDL HEADER START
3218822Sdim *
460484Sobrien * The contents of this file are subject to the terms of the
560484Sobrien * Common Development and Distribution License (the "License").
660484Sobrien * You may not use this file except in compliance with the License.
760484Sobrien *
860484Sobrien * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
960484Sobrien * or http://www.opensolaris.org/os/licensing.
1060484Sobrien * See the License for the specific language governing permissions
1160484Sobrien * and limitations under the License.
1260484Sobrien *
1360484Sobrien * When distributing Covered Code, include this CDDL HEADER in each
1460484Sobrien * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1560484Sobrien * If applicable, add the following below this CDDL HEADER, with the
1660484Sobrien * fields enclosed by brackets "[]" replaced with your own identifying
1760484Sobrien * information: Portions Copyright [yyyy] [name of copyright owner]
1860484Sobrien *
1960484Sobrien * CDDL HEADER END
20218822Sdim */
21218822Sdim
2260484Sobrien/*
2360484Sobrien * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
2460484Sobrien * Use is subject to license terms.
2560484Sobrien */
2660484Sobrien
2760484Sobrien#pragma	ident	"%Z%%M%	%I%	%E% SMI"
2860484Sobrien
2960484Sobrien/*
3060484Sobrien * ASSERTION:
3160484Sobrien * Declare self a variable and assign appropriate value.
3260484Sobrien *
3360484Sobrien * SECTION:  Variables/Scalar Variables
3460484Sobrien *
3560484Sobrien */
3660484Sobrienself x;
3760484Sobrien
3860484SobrienBEGIN
3960484Sobrien{
4060484Sobrien	x = "dummy";
4160484Sobrien	exit(0);
4260484Sobrien}
4360484Sobrien