126497Sache/*
226497Sache * CDDL HEADER START
326497Sache *
426497Sache * The contents of this file are subject to the terms of the
526497Sache * Common Development and Distribution License (the "License").
626497Sache * You may not use this file except in compliance with the License.
726497Sache *
826497Sache * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
926497Sache * or http://www.opensolaris.org/os/licensing.
1026497Sache * See the License for the specific language governing permissions
1126497Sache * and limitations under the License.
1226497Sache *
1326497Sache * When distributing Covered Code, include this CDDL HEADER in each
1426497Sache * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1526497Sache * If applicable, add the following below this CDDL HEADER, with the
1626497Sache * fields enclosed by brackets "[]" replaced with your own identifying
1726497Sache * information: Portions Copyright [yyyy] [name of copyright owner]
1826497Sache *
1926497Sache * CDDL HEADER END
2026497Sache */
2126497Sache
2226497Sache/*
2326497Sache * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
2426497Sache * Use is subject to license terms.
2526497Sache */
2626497Sache
2726497Sache#pragma	ident	"%Z%%M%	%I%	%E% SMI"
2826497Sache
2926497Sache/*
3026497Sache * ASSERTION:
3126497Sache *
3226497Sache * if !defined (logical-or) usage.
3326497Sache *
3426497Sache * SECTION: Program Structure/Use of the C Preprocessor
3526497Sache *
3626497Sache */
3726497Sache
3826497Sache#if !defined (FLAG) || !defined(STATUS)
3926497Sache#define VALUE 0
4026497Sache#else
4126497Sache#define VALUE 1
4226497Sache#endif
4326497Sache
4426497Sache#pragma D option quiet
4526497Sache
4626497Sachetick-10ms
4726497Sache{
4826497Sache	printf("The value is %d\n", VALUE);
4926497Sache	exit(0);
5026497Sache}
5126497Sache