compat.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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 libraries 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: compat.h /main/8 1996/07/18 16:32:14 drk $ */
  24. /*-
  25. * Copyright (c) 1991, 1993
  26. * The Regents of the University of California. All rights reserved.
  27. *
  28. * Redistribution and use in source and binary forms, with or without
  29. * modification, are permitted provided that the following conditions
  30. * are met:
  31. * 1. Redistributions of source code must retain the above copyright
  32. * notice, this list of conditions and the following disclaimer.
  33. * 2. Redistributions in binary form must reproduce the above copyright
  34. * notice, this list of conditions and the following disclaimer in the
  35. * documentation and/or other materials provided with the distribution.
  36. * 3. All advertising materials mentioning features or use of this software
  37. * must display the following acknowledgement:
  38. * This product includes software developed by the University of
  39. * California, Berkeley and its contributors.
  40. * 4. Neither the name of the University nor the names of its contributors
  41. * may be used to endorse or promote products derived from this software
  42. * without specific prior written permission.
  43. *
  44. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  45. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  46. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  47. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  48. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  49. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  50. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  51. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  52. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  53. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  54. * SUCH DAMAGE.
  55. *
  56. * @(#)compat.h 8.3 (Berkeley) 9/6/93
  57. */
  58. #ifndef _COMPAT_H_
  59. #define _COMPAT_H_
  60. #include <sys/types.h>
  61. #include "utility/config.h"
  62. /*
  63. * If your system doesn't typedef u_long, u_short, or u_char, change
  64. * the 0 to a 1.
  65. */
  66. #if 0
  67. typedef unsigned long u_long;
  68. typedef unsigned short u_short;
  69. typedef unsigned char u_char;
  70. #endif
  71. /* If your system doesn't typedef size_t, change the 0 to a 1. */
  72. #if 0
  73. typedef unsigned int size_t;
  74. #endif
  75. /*
  76. * If your system doesn't have the POSIX type for a signal mask,
  77. * change the 0 to a 1.
  78. */
  79. #if 0
  80. typedef unsigned int sigset_t;
  81. #endif
  82. /*
  83. * If you don't have POSIX 1003.1 signals, the signal code surrounding the
  84. * temporary file creation is intended to block all of the possible signals
  85. * long enough to create the file and unlink it. All of this stuff is
  86. * intended to use old-style BSD calls to fake POSIX 1003.1 calls.
  87. */
  88. #ifdef NO_POSIX_SIGNALS
  89. #define sigemptyset(set) (*(set) = 0)
  90. #define sigfillset(set) (*(set) = ~(sigset_t)0, 0)
  91. #define sigaddset(set,signo) (*(set) |= sigmask(signo), 0)
  92. #define sigdelset(set,signo) (*(set) &= ~sigmask(signo), 0)
  93. #define sigismember(set,signo) ((*(set) & sigmask(signo)) != 0)
  94. #define SIG_BLOCK 1
  95. #define SIG_UNBLOCK 2
  96. #define SIG_SETMASK 3
  97. static int __sigtemp; /* For the use of sigprocmask */
  98. /* Repeated test of oset != NULL is to avoid "*0". */
  99. #define sigprocmask(how, set, oset) \
  100. ((__sigtemp = \
  101. (((how) == SIG_BLOCK) ? \
  102. sigblock(0) | *(set) : \
  103. (((how) == SIG_UNBLOCK) ? \
  104. sigblock(0) & ~(*(set)) : \
  105. ((how) == SIG_SETMASK ? \
  106. *(set) : sigblock(0))))), \
  107. ((oset) ? (*(oset ? oset : set) = sigsetmask(__sigtemp)) : \
  108. sigsetmask(__sigtemp)), 0)
  109. #endif
  110. /*
  111. * If realloc(3) of a NULL pointer on your system isn't the same as
  112. * a malloc(3) call, change the 0 to a 1, and add realloc.o to the
  113. * MISC line in your Makefile.
  114. */
  115. /*
  116. #if 1
  117. #define realloc __fix_realloc
  118. #endif
  119. */
  120. void * __fix_realloc __P((void*, size_t));
  121. /*
  122. * If your system doesn't have an include file with the appropriate
  123. * byte order set, make sure you specify the correct one.
  124. */
  125. #ifndef BYTE_ORDER
  126. #define LITTLE_ENDIAN 1234 /* LSB first: i386, vax */
  127. #define BIG_ENDIAN 4321 /* MSB first: 68000, ibm, net */
  128. #ifdef MMDB_LITTLE_ENDIAN
  129. #define BYTE_ORDER LITTLE_ENDIAN /* Set for your system. */
  130. #endif
  131. #ifdef MMDB_BIG_ENDIAN
  132. #define BYTE_ORDER BIG_ENDIAN /* Set for your system. */
  133. #endif
  134. #endif
  135. #if defined(SYSV) || defined(SYSTEM5) || defined(SVR4)
  136. /* #define index(a, b) strchr(a, b) */
  137. #ifndef rindex
  138. #define rindex(a, b) strrchr(a, b)
  139. #endif
  140. #define bzero(a, b) memset(a, 0, b)
  141. #define bcmp(a, b, n) memcmp(a, b, n)
  142. #define bcopy(a, b, n) memmove(b, a, n)
  143. #endif
  144. #if defined(BSD) || defined(BSD4_3)
  145. #define strchr(a, b) index(a, b)
  146. #define strrchr(a, b) rindex(a, b)
  147. #define memcmp(a, b, n) bcmp(a, b, n)
  148. #define memmove(a, b, n) bcopy(b, a, n)
  149. #endif
  150. /*
  151. * 32-bit machine. The db routines are theoretically independent of
  152. * the size of u_shorts and u_longs, but I don't know that anyone has
  153. * ever actually tried it. At a minimum, change the following #define's
  154. * if you are trying to compile on a different type of system.
  155. */
  156. #ifndef USHRT_MAX
  157. #define USHRT_MAX 0xFFFF
  158. #define ULONG_MAX 0xFFFFFFFF
  159. #endif
  160. /* POSIX 1003.1 access mode mask. */
  161. #ifndef O_ACCMODE
  162. #define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
  163. #endif
  164. /* POSIX 1003.2 RE limit. */
  165. #ifndef _POSIX2_RE_DUP_MAX
  166. #define _POSIX2_RE_DUP_MAX 255
  167. #endif
  168. /*
  169. * If you can't provide lock values in the open(2) call. Note, this
  170. * allows races to happen.
  171. */
  172. #ifndef O_EXLOCK
  173. #define O_EXLOCK 0
  174. #endif
  175. #ifndef O_SHLOCK
  176. #define O_SHLOCK 0
  177. #endif
  178. #ifndef EFTYPE
  179. #define EFTYPE EINVAL /* POSIX 1003.1 format errno. */
  180. #endif
  181. #ifndef WCOREDUMP /* 4.4BSD extension */
  182. #define WCOREDUMP(a) 0
  183. #endif
  184. #ifndef STDERR_FILENO
  185. #define STDIN_FILENO 0 /* ANSI C #defines */
  186. #define STDOUT_FILENO 1
  187. #define STDERR_FILENO 2
  188. #endif
  189. #ifndef SEEK_END
  190. #define SEEK_SET 0 /* POSIX 1003.1 seek values */
  191. #define SEEK_CUR 1
  192. #define SEEK_END 2
  193. #endif
  194. #ifndef S_ISLNK /* BSD POSIX 1003.1 extensions */
  195. #define S_ISLNK(m) ((m & 0170000) == 0120000)
  196. #define S_ISSOCK(m) ((m & 0170000) == 0140000)
  197. #endif
  198. #ifndef TCSASOFT
  199. #define TCSASOFT 0
  200. #endif
  201. #ifndef _POSIX2_RE_DUP_MAX
  202. #define _POSIX2_RE_DUP_MAX 255
  203. #endif
  204. #ifndef NULL /* ANSI C #defines NULL everywhere. */
  205. #define NULL 0
  206. #endif
  207. #undef MAX
  208. #define MAX(a,b) ((a)<(b)?(b):(a))
  209. #undef MIN
  210. #define MIN(a,b) ((a)<(b)?(a):(b))
  211. #ifndef DEFFILEMODE /* Default file permissions. */
  212. #define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
  213. #endif
  214. #ifndef _BSD_VA_LIST_
  215. #define _BSD_VA_LIST_ char *
  216. #endif
  217. #endif /* !_COMPAT_H_ */