Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Trunk/i386/include/_types.h

1/*
2 * Copyright (c) 2004, 2008, 2009 Apple Inc. All rights reserved.
3 *
4 *
5 * This file contains Original Code and/or Modifications of Original Code
6 * as defined in and that are subject to the Apple Public Source License
7 * Version 2.0 (the 'License'). You may not use this file except in
8 * compliance with the License. Please obtain a copy of the License at
9 * http://www.opensource.apple.com/apsl/ and read it before using this
10 * file.
11 *
12 * The Original Code and all software distributed under the License are
13 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
17 * Please see the License for the specific language governing rights and
18 * limitations under the License.
19 *
20 */
21
22#ifndef __TYPES_H_
23#define __TYPES_H_
24
25#include <sys/_types.h>
26
27#if __GNUC__ > 2 || __GNUC__ == 2 && __GNUC_MINOR__ >= 7
28#define __strfmonlike(fmtarg, firstvararg) \
29__attribute__((__format__ (__strfmon__, fmtarg, firstvararg)))
30#define __strftimelike(fmtarg) \
31__attribute__((__format__ (__strftime__, fmtarg, 0)))
32#else
33#define __strfmonlike(fmtarg, firstvararg)
34#define __strftimelike(fmtarg)
35#endif
36
37typedefint__darwin_nl_item;
38typedefint__darwin_wctrans_t;
39#ifdef __LP64__
40typedef__uint32_t__darwin_wctype_t;
41#else /* !__LP64__ */
42typedefunsigned long__darwin_wctype_t;
43#endif /* __LP64__ */
44
45#ifdef __WCHAR_MAX__
46#define __DARWIN_WCHAR_MAX__WCHAR_MAX__
47#else /* ! __WCHAR_MAX__ */
48#define __DARWIN_WCHAR_MAX0x7fffffff
49#endif /* __WCHAR_MAX__ */
50
51#if __DARWIN_WCHAR_MAX > 0xffffU
52#define __DARWIN_WCHAR_MIN(-0x7fffffff - 1)
53#else
54#define __DARWIN_WCHAR_MIN0
55#endif
56#define__DARWIN_WEOF ((__darwin_wint_t)-1)
57
58#ifndef _FORTIFY_SOURCE
59# if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && ((__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__-0) < 1050)
60# define _FORTIFY_SOURCE 0
61# else
62# define _FORTIFY_SOURCE 2/* on by default */
63# endif
64#endif
65
66#endif /* __TYPES_H_ */
67

Archive Download this file

Revision: 2045