9512fe850e98fdd448c638ca63fdd92a8a510255ahl/*
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * CDDL HEADER START
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * The contents of this file are subject to the terms of the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Common Development and Distribution License (the "License").
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * You may not use this file except in compliance with the License.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * or http://www.opensolaris.org/os/licensing.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * See the License for the specific language governing permissions
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * and limitations under the License.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * When distributing Covered Code, include this CDDL HEADER in each
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * If applicable, add the following below this CDDL HEADER, with the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * fields enclosed by brackets "[]" replaced with your own identifying
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * information: Portions Copyright [yyyy] [name of copyright owner]
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * CDDL HEADER END
9512fe850e98fdd448c638ca63fdd92a8a510255ahl */
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/*
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Use is subject to license terms.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl */
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/*
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * ASSERTION:
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * Declare different types of inline data types.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * SECTION: Type and Constant Definitions/Inlines
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * NOTES: The commented lines defining floats and doubles should be uncommented
9512fe850e98fdd448c638ca63fdd92a8a510255ahl * once the functionality is provided.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl */
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#pragma ident "%Z%%M% %I% %E% SMI"
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#pragma D option quiet
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline char new_char = 'c';
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline short new_short = 10;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline int new_int = 100;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline long new_long = 1234567890;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline long long new_long_long = 1234512345;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline int8_t new_int8 = 'p';
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline int16_t new_int16 = 20;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline int32_t new_int32 = 200;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline int64_t new_int64 = 2000000;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline intptr_t new_intptr = 0x12345;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline uint8_t new_uint8 = 'q';
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline uint16_t new_uint16 = 30;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline uint32_t new_uint32 = 300;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline uint64_t new_uint64 = 3000000;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline uintptr_t new_uintptr = 0x67890;
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/* inline float new_float = 1.23456;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline double new_double = 2.34567890;
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline long double new_long_double = 3.567890123;
9512fe850e98fdd448c638ca63fdd92a8a510255ahl*/
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlinline int * pointer = &`kmem_flags;
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlBEGIN
9512fe850e98fdd448c638ca63fdd92a8a510255ahl{
9512fe850e98fdd448c638ca63fdd92a8a510255ahl exit(0);
9512fe850e98fdd448c638ca63fdd92a8a510255ahl}