18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 */
26
27 #ifndef _STDINT_H
28 #define _STDINT_H
29
30 /*
31 * This header was introduced by the ISO C Standard, ISO/IEC
32 * 9899:1999 Programming language - C. It is a subset of the
33 * <inttypes.h> header.
34 */
35
36 #include <sys/stdint.h>
37
38 #endif /* _STDINT_H */
|
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 */
26
27 #ifndef _STDINT_H
28 #define _STDINT_H
29
30 /*
31 * This header was introduced by the ISO C Standard, ISO/IEC
32 * 9899:1999 Programming language - C. It is a subset of the
33 * <inttypes.h> header.
34 */
35
36 #include <sys/stdint.h>
37
38 #if __EXT1_VISIBLE
39 /* ISO/IEC 9899:2011 K.3.4.4 */
40 #ifndef RSIZE_MAX
41 #define RSIZE_MAX (SIZE_MAX >> 1)
42 #endif
43 #endif /* __EXT1_VISIBLE */
44
45 #endif /* _STDINT_H */
|