1178476Sjb/*
2178476Sjb * CDDL HEADER START
3178476Sjb *
4178476Sjb * The contents of this file are subject to the terms of the
5178476Sjb * Common Development and Distribution License (the "License").
6178476Sjb * You may not use this file except in compliance with the License.
7178476Sjb *
8178476Sjb * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9178476Sjb * or http://www.opensolaris.org/os/licensing.
10178476Sjb * See the License for the specific language governing permissions
11178476Sjb * and limitations under the License.
12178476Sjb *
13178476Sjb * When distributing Covered Code, include this CDDL HEADER in each
14178476Sjb * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15178476Sjb * If applicable, add the following below this CDDL HEADER, with the
16178476Sjb * fields enclosed by brackets "[]" replaced with your own identifying
17178476Sjb * information: Portions Copyright [yyyy] [name of copyright owner]
18178476Sjb *
19178476Sjb * CDDL HEADER END
20178476Sjb */
21178476Sjb
22178476Sjb/*
23178476Sjb * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24178476Sjb * Use is subject to license terms.
25178476Sjb */
26178476Sjb
27178476Sjb#pragma ident	"%Z%%M%	%I%	%E% SMI"
28178476Sjb
29178476Sjb
30178476Sjb/*
31178476Sjb * ASSERTION:
32178476Sjb *  Test a variety of extern declarations that exercise the different
33178476Sjb *  kinds of declarations that we can process.
34178476Sjb *
35178476Sjb * SECTION:  Program Structure/Probe Clauses and Declarations
36178476Sjb *
37178476Sjb */
38178476Sjb
39178476Sjbextern void *e1;
40178476Sjbextern char e2;
41178476Sjbextern signed char e3;
42178476Sjbextern unsigned char e4;
43178476Sjbextern short e5;
44178476Sjbextern signed short e6;
45178476Sjbextern unsigned short e7;
46178476Sjbextern int e8;
47178476Sjbextern e9;
48178476Sjbextern signed int e10;
49178476Sjbextern unsigned int e11;
50178476Sjbextern long e12;
51178476Sjbextern signed long e13;
52178476Sjbextern unsigned long e14;
53178476Sjbextern long long e15;
54178476Sjbextern signed long long e16;
55178476Sjbextern unsigned long long e17;
56178476Sjbextern float e18;
57178476Sjbextern double e19;
58178476Sjbextern long double e20;
59178476Sjbextern vnode_t e21;
60178476Sjbextern struct vnode e22;
61178476Sjbextern union sigval e23;
62178476Sjbextern enum uio_rw e24;
63178476Sjb
64178476SjbBEGIN
65178476Sjb{
66178476Sjb	exit(0);
67178476Sjb}
68