]>
git.saurik.com Git - apple/libc.git/blob - fbsdcompat/_fbsd_compat_.h
654eabfa67457d43d710cf939f41ac9ce291c46a
2 * Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
23 #ifndef __FBSD_COMPAT__H_
24 #define __FBSD_COMPAT__H_
28 #define OFF_MAX LLONG_MAX
29 #define OFF_MIN LLONG_MIN
31 #define _BIG_ENDIAN BIG_ENDIAN
32 #endif /* _BIG_ENDIAN */
33 #define _BYTE_ORDER BYTE_ORDER
34 #define _LITTLE_ENDIAN LITTLE_ENDIAN
35 #define __ct_rune_t ct_rune_t
36 #define __va_list __darwin_va_list
39 * Do the opposite of FreeBSD namespace.h; that is, map the "hidden" names
40 * back to the real names.
44 * ISO C (C90) section. Most names in libc aren't in ISO C, so they
45 * should be here. Most aren't here...
50 #define _accept accept
53 #define _connect connect
57 #define _execve execve
59 /*#define _flock flock */
60 #define _flockfile flockfile
61 #define _ftrylockfile ftrylockfile
63 #define _fstatfs fstatfs
65 #define _funlockfile funlockfile
66 #define _getdirentries getdirentries
67 /* #define _getlogin getlogin */
68 #define _getpeername getpeername
69 #define _getprogname getprogname
70 #define _getsockname getsockname
71 #define _getsockopt getsockopt
73 /* #define _kevent kevent */
74 #define _listen listen
75 #define _nanosleep nanosleep
79 #define _pthread_cond_broadcast pthread_cond_broadcast
80 #define _pthread_cond_destroy pthread_cond_destroy
81 #define _pthread_cond_init pthread_cond_init
82 #define _pthread_cond_signal pthread_cond_signal
83 #define _pthread_cond_timedwait pthread_cond_timedwait
84 #define _pthread_cond_wait pthread_cond_wait
85 #define _pthread_exit pthread_exit
86 #define _pthread_getspecific pthread_getspecific
87 #define _pthread_key_create pthread_key_create
88 #define _pthread_key_delete pthread_key_delete
89 #define _pthread_main_np pthread_main_np
90 #define _pthread_mutex_destroy pthread_mutex_destroy
91 #define _pthread_mutex_init pthread_mutex_init
92 #define _pthread_mutex_lock pthread_mutex_lock
93 #define _pthread_mutex_trylock pthread_mutex_trylock
94 #define _pthread_mutex_unlock pthread_mutex_unlock
95 #define _pthread_mutexattr_destroy pthread_mutexattr_destroy
96 #define _pthread_mutexattr_init pthread_mutexattr_init
97 #define _pthread_mutexattr_settype pthread_mutexattr_settype
98 #define _pthread_once pthread_once
99 #define _pthread_rwlock_destroy pthread_rwlock_destroy
100 #define _pthread_rwlock_init pthread_rwlock_init
101 #define _pthread_rwlock_rdlock pthread_rwlock_rdlock
102 #define _pthread_rwlock_wrlock pthread_rwlock_wrlock
103 #define _pthread_rwlock_tryrdlock pthread_rwlock_tryrdlock
104 #define _pthread_rwlock_trywrlock pthread_rwlock_trywrlock
105 #define _pthread_rwlock_unlock pthread_rwlock_unlock
106 #define _pthread_self pthread_self
107 #define _pthread_setspecific pthread_setspecific
108 #define _pthread_sigmask pthread_sigmask
111 #define _recvfrom recvfrom
112 #define _recvmsg recvmsg
113 #define _select select
114 #define _sendmsg sendmsg
115 #define _sendto sendto
116 #define _setsockopt setsockopt
117 #define _sigaction sigaction
118 #define _sigprocmask sigprocmask
119 #define _sigsuspend sigsuspend
121 #define _socket socket
122 #define _socketpair socketpair
123 #define _system system
124 #define _tcdrain tcdrain
127 #define _waitpid waitpid
129 #define _writev writev
131 #define __creat creat
132 #define __fmtcheck fmtcheck
133 #define __inet_addr inet_addr
134 #define __inet_aton inet_aton
135 #define __inet_lnaof inet_lnaof
136 #define __inet_makeaddr inet_makeaddr
137 #define __inet_net_ntop inet_net_ntop
138 #define __inet_net_pton inet_net_pton
139 #define __inet_neta inet_neta
140 #define __inet_netof inet_netof
141 #define __inet_network inet_network
142 #define __inet_nsap_addr inet_nsap_addr
143 #define __inet_nsap_ntoa inet_nsap_ntoa
144 #define __inet_ntoa inet_ntoa
145 #define __inet_ntop inet_ntop
146 #define __inet_pton inet_pton
147 #define __makecontext makecontext
148 #define __makecontext makecontext
149 #define __pause pause
150 #define __pselect pselect
151 #define __raise raise
152 #define __signalcontext signalcontext
153 #define __sleep sleep
154 #define __strtok_r strtok_r
155 #define __swapcontext swapcontext
156 #define __system system
157 #define __tcdrain tcdrain
158 #define __vfscanf vfscanf
160 #define __waitpid waitpid
162 #define _GENERIC_DIRSIZ(dp) \
163 ((sizeof (struct dirent) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3))
165 #endif /* __FBSD_COMPAT__H_ */