Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtksh / ksh93 / src / lib / libast / include / modecanon.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: modecanon.h /main/3 1995/11/01 17:37:38 rswiston $ */
24 /***************************************************************
25 *                                                              *
26 *                      AT&T - PROPRIETARY                      *
27 *                                                              *
28 *         THIS IS PROPRIETARY SOURCE CODE LICENSED BY          *
29 *                          AT&T CORP.                          *
30 *                                                              *
31 *                Copyright (c) 1995 AT&T Corp.                 *
32 *                     All Rights Reserved                      *
33 *                                                              *
34 *           This software is licensed by AT&T Corp.            *
35 *       under the terms and conditions of the license in       *
36 *       http://www.research.att.com/orgs/ssr/book/reuse        *
37 *                                                              *
38 *               This software was created by the               *
39 *           Software Engineering Research Department           *
40 *                    AT&T Bell Laboratories                    *
41 *                                                              *
42 *               For further information contact                *
43 *                     gsf@research.att.com                     *
44 *                                                              *
45 ***************************************************************/
46
47 /* : : generated by proto : : */
48                   
49 /*
50  * Glenn Fowler
51  * AT&T Bell Laboratories
52  *
53  * canonical mode_t representation
54  */
55
56 #ifndef _MODECANON_H
57 #if !defined(__PROTO__)
58 #if defined(__STDC__) || defined(__cplusplus) || defined(_proto) || defined(c_plusplus)
59 #if defined(__cplusplus)
60 #define __MANGLE__      "C"
61 #else
62 #define __MANGLE__
63 #endif
64 #define __STDARG__
65 #define __PROTO__(x)    x
66 #define __OTORP__(x)
67 #define __PARAM__(n,o)  n
68 #if !defined(__STDC__) && !defined(__cplusplus)
69 #if !defined(c_plusplus)
70 #define const
71 #endif
72 #define signed
73 #define void            int
74 #define volatile
75 #define __V_            char
76 #else
77 #define __V_            void
78 #endif
79 #else
80 #define __PROTO__(x)    ()
81 #define __OTORP__(x)    x
82 #define __PARAM__(n,o)  o
83 #define __MANGLE__
84 #define __V_            char
85 #define const
86 #define signed
87 #define void            int
88 #define volatile
89 #endif
90 #if defined(__cplusplus) || defined(c_plusplus)
91 #define __VARARG__      ...
92 #else
93 #define __VARARG__
94 #endif
95 #if defined(__STDARG__)
96 #define __VA_START__(p,a)       va_start(p,a)
97 #else
98 #define __VA_START__(p,a)       va_start(p)
99 #endif
100 #endif
101
102 #define _MODECANON_H
103
104 #define X_ITYPE(m)      ((m)&X_IFMT)
105
106 #define X_IFMT          0170000
107 #define X_IFSOCK        0140000
108 #define X_IFLNK         0120000
109 #define X_IFCTG         0110000
110 #define X_IFREG         0100000
111 #define X_IFBLK         0060000
112 #define X_IFDIR         0040000
113 #define X_IFCHR         0020000
114 #define X_IFIFO         0010000
115
116 #define X_IPERM         0007777
117 #define X_ISUID         0004000
118 #define X_ISGID         0002000
119 #define X_ISVTX         0001000
120 #define X_IRUSR         0000400
121 #define X_IWUSR         0000200
122 #define X_IXUSR         0000100
123 #define X_IRGRP         0000040
124 #define X_IWGRP         0000020
125 #define X_IXGRP         0000010
126 #define X_IROTH         0000004
127 #define X_IWOTH         0000002
128 #define X_IXOTH         0000001
129
130 #define X_IRWXU         (X_IRUSR|X_IWUSR|X_IXUSR)
131 #define X_IRWXG         (X_IRGRP|X_IWGRP|X_IXGRP)
132 #define X_IRWXO         (X_IROTH|X_IWOTH|X_IXOTH)
133
134 #endif