Path: blob/main/cddl/contrib/opensolaris/head/storclass.h
39483 views
/*1* CDDL HEADER START2*3* The contents of this file are subject to the terms of the4* Common Development and Distribution License, Version 1.0 only5* (the "License"). You may not use this file except in compliance6* with the License.7*8* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE9* or http://www.opensolaris.org/os/licensing.10* See the License for the specific language governing permissions11* and limitations under the License.12*13* When distributing Covered Code, include this CDDL HEADER in each14* file and include the License file at usr/src/OPENSOLARIS.LICENSE.15* If applicable, add the following below this CDDL HEADER, with the16* fields enclosed by brackets "[]" replaced with your own identifying17* information: Portions Copyright [yyyy] [name of copyright owner]18*19* CDDL HEADER END20*/21/* Copyright (c) 1988 AT&T */22/* All Rights Reserved */232425#ifndef _STORCLASS_H26#define _STORCLASS_H2728#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.6 */2930#ifdef __cplusplus31extern "C" {32#endif3334/*35* STORAGE CLASSES36*/3738#define C_EFCN -1 /* physical end of function */39#define C_NULL 040#define C_AUTO 1 /* automatic variable */41#define C_EXT 2 /* external symbol */42#define C_STAT 3 /* static */43#define C_REG 4 /* register variable */44#define C_EXTDEF 5 /* external definition */45#define C_LABEL 6 /* label */46#define C_ULABEL 7 /* undefined label */47#define C_MOS 8 /* member of structure */48#define C_ARG 9 /* function argument */49#define C_STRTAG 10 /* structure tag */50#define C_MOU 11 /* member of union */51#define C_UNTAG 12 /* union tag */52#define C_TPDEF 13 /* type definition */53#define C_USTATIC 14 /* undefined static */54#define C_ENTAG 15 /* enumeration tag */55#define C_MOE 16 /* member of enumeration */56#define C_REGPARM 17 /* register parameter */57#define C_FIELD 18 /* bit field */58#define C_BLOCK 100 /* ".bb" or ".eb" */59#define C_FCN 101 /* ".bf" or ".ef" */60#define C_EOS 102 /* end of structure */61#define C_FILE 103 /* file name */6263/*64* The following storage class is a "dummy" used only by STS65* for line number entries reformatted as symbol table entries66*/6768#define C_LINE 10469#define C_ALIAS 105 /* duplicate tag */70#define C_HIDDEN 106 /* special storage class for external */71/* symbols in dmert public libraries */72#define C_SHADOW 107 /* shadow symbol */7374#ifdef __cplusplus75}76#endif7778#endif /* _STORCLASS_H */798081