Add BSD license file
[platform/upstream/db4.git] / dist / wince_config.in
1 /* Define to 1 if you want to build a version for running the test suite. */
2 /* #undef CONFIG_TEST */
3
4 /* We use DB_WIN32 much as one would use _WIN32 -- to specify that we're using
5    an operating system environment that supports Win32 calls and semantics. We
6    don't use _WIN32 because Cygwin/GCC also defines _WIN32, even though
7    Cygwin/GCC closely emulates the Unix environment. */
8 #define DB_WIN32 1
9
10 /* Define to 1 if you want a debugging version. */
11 #if defined(_DEBUG)
12 #if !defined(DEBUG)
13 #define DEBUG 1
14 #endif
15 #endif
16
17 /* Define to 1 if you want a version that logs read operations. */
18 /* #undef DEBUG_ROP */
19
20 /* Define to 1 if you want a version that logs write operations. */
21 /* #undef DEBUG_WOP */
22
23 /* Define to 1 if you want a version with run-time diagnostic checking. */
24 /* #undef DIAGNOSTIC */
25
26 /* Define to 1 if 64-bit types are available. */
27 #define HAVE_64BIT_TYPES 1
28
29 /* Define to 1 if you have the `abort' function. */
30 /* #undef HAVE_ABORT */
31
32 /* Define to 1 if you have the `atoi' function. */
33 #define HAVE_ATOI 1
34
35 /* Define to 1 if you have the `atol' function. */
36 #define HAVE_ATOL 1
37
38 /* Define to 1 to use Solaris library routes for atomic operations. */
39 /* #undef HAVE_ATOMIC_SOLARIS */
40
41 /* Define to 1 to use native atomic operations. */
42 #define HAVE_ATOMIC_SUPPORT 1
43
44 /* Define to 1 to use GCC and x86 or x86_64 assemlby language atomic
45    operations. */
46 /* #undef HAVE_ATOMIC_X86_GCC_ASSEMBLY */
47
48 /* Define to 1 if you have the `backtrace' function. */
49
50 /* Define to 1 if you have the `backtrace' function. */
51 /* #undef HAVE_BACKTRACE */
52
53 /* Define to 1 if you have the `backtrace_symbols' function. */
54 /* #undef HAVE_BACKTRACE_SYMBOLS */
55
56 /* Define to 1 if building BREW. */
57 /* #undef HAVE_BREW */
58
59 /* Define to 1 if building on BREW (SDK2). */
60 /* #undef HAVE_BREW_SDK2 */
61
62 /* Define to 1 if you have the `clock_gettime' function. */
63 /* #undef HAVE_CLOCK_GETTIME */
64
65 /* Define to 1 if clock_gettime supports CLOCK_MONOTONIC. */
66 /* #undef HAVE_CLOCK_MONOTONIC */
67
68 /* Define to 1 if building compression support. */
69 /* #undef HAVE_COMPRESSION */
70
71 /* Define to 1 if Berkeley DB release includes strong cryptography. */
72 #ifndef HAVE_SMALLBUILD
73 #define HAVE_CRYPTO 1
74 #endif
75
76 /* Define to 1 if you have the `ctime_r' function. */
77 /* #undef HAVE_CTIME_R  */
78
79 /* Define to 1 if ctime_r takes a buffer length as a third argument. */
80 /* #undef HAVE_CTIME_R_3ARG */
81
82 /* Define to 1 if you have the `directio' function. */
83 /* #undef HAVE_DIRECTIO */
84
85 /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
86    */
87 /* #undef HAVE_DIRENT_H */
88
89 /* Define to 1 if you have the <dlfcn.h> header file. */
90 /* #undef HAVE_DLFCN_H */
91
92 /* Define to 1 if you have the <execinfo.h> header file. */
93 /* #undef HAVE_EXECINFO_H */
94
95 /* Define to 1 if you have EXIT_SUCCESS/EXIT_FAILURE #defines. */
96 #define HAVE_EXIT_SUCCESS 1
97
98 /* Define to 1 if you have the `fchmod' function. */
99 /* #undef HAVE_FCHMOD */
100
101 /* Define to 1 if you have the `fclose' function. */
102 #define HAVE_FCLOSE 1
103
104 /* Define to 1 if you have the `fcntl' function. */
105 /* #undef HAVE_FCNTL */
106
107 /* Define to 1 if fcntl/F_SETFD denies child access to file descriptors. */
108 /* #undef HAVE_FCNTL_F_SETFD */
109
110 /* Define to 1 if you have the `fdatasync' function. */
111 /* #undef HAVE_FDATASYNC */
112
113 /* Define to 1 if you have the `fgetc' function. */
114 #define HAVE_FGETC 1
115
116 /* Define to 1 if you have the `fgets' function. */
117 #define HAVE_FGETS 1
118
119 /* Define to 1 if allocated filesystem blocks are not zeroed. */
120 #define HAVE_FILESYSTEM_NOTZERO 1
121
122 /* Define to 1 if you have the `fopen' function. */
123 #define HAVE_FOPEN 1
124
125 /* Define to 1 if you have the `ftruncate' function. */
126 #define HAVE_FTRUNCATE 1
127
128 /* Define to 1 if you have the `fwrite' function. */
129 #define HAVE_FWRITE 1
130
131 /* Define to 1 if you have the `getaddrinfo' function. */
132 /* #undef HAVE_GETADDRINFO */
133
134 /* Define to 1 if you have the `getcwd' function. */
135 /* #undef HAVE_GETCWD */
136
137 /* Define to 1 if you have the `getenv' function. */
138 /* #undef HAVE_GETENV */
139
140 /* Define to 1 if you have the `getgid' function. */
141 /* #undef HAVE_GETGID */
142
143 /* Define to 1 if you have the `getopt' function. */
144 /*
145  * Windows does not have the getopt function, but as Berkeley DB example
146  * programs require getopt, we handle it outside of this configuration.
147  */
148 #define HAVE_GETOPT 1
149
150 /* Define to 1 if getopt supports the optreset variable. */
151 #define HAVE_GETOPT_OPTRESET 1
152
153 /* Define to 1 if you have the `getrusage' function. */
154 /* #undef HAVE_GETRUSAGE */
155
156 /* Define to 1 if you have the `gettimeofday' function. */
157 /* #undef HAVE_GETTIMEOFDAY */
158
159 /* Define to 1 if you have the `getuid' function. */
160 /* #undef HAVE_GETUID */
161
162 /* Define to 1 if building Hash access method. */
163 #ifndef HAVE_SMALLBUILD
164 #define HAVE_HASH 1
165 #endif
166
167 /* Define to 1 if you have the `hstrerror' function. */
168 /* #undef HAVE_HSTRERROR */
169
170 /* Define to 1 if you have the <inttypes.h> header file. */
171 /* #undef HAVE_INTTYPES_H */
172
173 /* Define to 1 if you have the `isalpha' function. */
174 #define HAVE_ISALPHA 1
175
176 /* Define to 1 if you have the `isdigit' function. */
177 #define HAVE_ISDIGIT 1
178
179 /* Define to 1 if you have the `isprint' function. */
180 #define HAVE_ISPRINT 1
181
182 /* Define to 1 if you have the `localtime' function. */
183 /* #undef HAVE_LOCALTIME */
184
185 /* Define to 1 if you have the `isspace' function. */
186 #define HAVE_ISSPACE 1
187
188 /* Define to 1 if you have the `memcmp' function. */
189 #define HAVE_MEMCMP 1
190
191 /* Define to 1 if you have the `memcpy' function. */
192 #define HAVE_MEMCPY 1
193
194 /* Define to 1 if you have the `memmove' function. */
195 #define HAVE_MEMMOVE 1
196
197 /* Define to 1 if you have the <memory.h> header file. */
198 #define HAVE_MEMORY_H 1
199
200 /* Define to 1 if you have the `mlock' function. */
201 /* #undef HAVE_MLOCK */
202
203 /* Define to 1 if you have the `mmap' function. */
204 /* #undef HAVE_MMAP */
205
206 /* Define to 1 if you have the `mprotect' function. */
207 /* #undef HAVE_MPROTECT */
208
209 /* Define to 1 if you have the `munlock' function. */
210 /* #undef HAVE_MUNLOCK */
211
212 /* Define to 1 if you have the `munmap' function. */
213 /* #undef HAVE_MUNMAP */
214
215 /* Define to 1 to use the GCC compiler and 68K assembly language mutexes. */
216 /* #undef HAVE_MUTEX_68K_GCC_ASSEMBLY */
217
218 /* Define to 1 to use the AIX _check_lock mutexes. */
219 /* #undef HAVE_MUTEX_AIX_CHECK_LOCK */
220
221 /* Define to 1 to use the GCC compiler and Alpha assembly language mutexes. */
222 /* #undef HAVE_MUTEX_ALPHA_GCC_ASSEMBLY */
223
224 /* Define to 1 to use the GCC compiler and ARM assembly language mutexes. */
225 /* #undef HAVE_MUTEX_ARM_GCC_ASSEMBLY */
226
227 /* Define to 1 to use the Apple/Darwin _spin_lock_try mutexes. */
228 /* #undef HAVE_MUTEX_DARWIN_SPIN_LOCK_TRY */
229
230 /* Define to 1 to use the UNIX fcntl system call mutexes. */
231 /* #undef HAVE_MUTEX_FCNTL */
232
233 /* Define to 1 to use the GCC compiler and PaRisc assembly language mutexes.
234    */
235 /* #undef HAVE_MUTEX_HPPA_GCC_ASSEMBLY */
236
237 /* Define to 1 to use the msem_XXX mutexes on HP-UX. */
238 /* #undef HAVE_MUTEX_HPPA_MSEM_INIT */
239
240 /* Define to 1 to use test-and-set mutexes with blocking mutexes. */
241 /* #undef HAVE_MUTEX_HYBRID */
242
243 /* Define to 1 to use the GCC compiler and IA64 assembly language mutexes. */
244 /* #undef HAVE_MUTEX_IA64_GCC_ASSEMBLY */
245
246 /* Define to 1 to use the GCC compiler and MIPS assembly language mutexes. */
247 /* #undef HAVE_MUTEX_MIPS_GCC_ASSEMBLY */
248
249 /* Define to 1 to use the msem_XXX mutexes on systems other than HP-UX. */
250 /* #undef HAVE_MUTEX_MSEM_INIT */
251
252 /* Define to 1 to use the GCC compiler and PowerPC assembly language mutexes.
253    */
254 /* #undef HAVE_MUTEX_PPC_GCC_ASSEMBLY */
255
256 /* Define to 1 to use POSIX 1003.1 pthread_XXX mutexes. */
257 /* #undef HAVE_MUTEX_PTHREADS */
258
259 /* Define to 1 to use Reliant UNIX initspin mutexes. */
260 /* #undef HAVE_MUTEX_RELIANTUNIX_INITSPIN */
261
262 /* Define to 1 to use the IBM C compiler and S/390 assembly language mutexes.
263    */
264 /* #undef HAVE_MUTEX_S390_CC_ASSEMBLY */
265
266 /* Define to 1 to use the GCC compiler and S/390 assembly language mutexes. */
267 /* #undef HAVE_MUTEX_S390_GCC_ASSEMBLY */
268
269 /* Define to 1 to use the SCO compiler and x86 assembly language mutexes. */
270 /* #undef HAVE_MUTEX_SCO_X86_CC_ASSEMBLY */
271
272 /* Define to 1 to use the obsolete POSIX 1003.1 sema_XXX mutexes. */
273 /* #undef HAVE_MUTEX_SEMA_INIT */
274
275 /* Define to 1 to use the SGI XXX_lock mutexes. */
276 /* #undef HAVE_MUTEX_SGI_INIT_LOCK */
277
278 /* Define to 1 to use the Solaris _lock_XXX mutexes. */
279 /* #undef HAVE_MUTEX_SOLARIS_LOCK_TRY */
280
281 /* Define to 1 to use the Solaris lwp threads mutexes. */
282 /* #undef HAVE_MUTEX_SOLARIS_LWP */
283
284 /* Define to 1 to use the GCC compiler and Sparc assembly language mutexes. */
285 /* #undef HAVE_MUTEX_SPARC_GCC_ASSEMBLY */
286
287 /* Define to 1 if the Berkeley DB library should support mutexes. */
288 #define HAVE_MUTEX_SUPPORT 1
289
290 /* Define to 1 if mutexes hold system resources. */
291 /* #undef HAVE_MUTEX_SYSTEM_RESOURCES */
292
293 /* Define to 1 to configure mutexes intra-process only. */
294 /* #undef HAVE_MUTEX_THREAD_ONLY */
295
296 /* Define to 1 to use the CC compiler and Tru64 assembly language mutexes. */
297 /* #undef HAVE_MUTEX_TRU64_CC_ASSEMBLY */
298
299 /* Define to 1 to use the UNIX International mutexes. */
300 /* #undef HAVE_MUTEX_UI_THREADS */
301
302 /* Define to 1 to use the UTS compiler and assembly language mutexes. */
303 /* #undef HAVE_MUTEX_UTS_CC_ASSEMBLY */
304
305 /* Define to 1 to use VMS mutexes. */
306 /* #undef HAVE_MUTEX_VMS */
307
308 /* Define to 1 to use VxWorks mutexes. */
309 /* #undef HAVE_MUTEX_VXWORKS */
310
311 /* Define to 1 to use the MSVC compiler and Windows mutexes. */
312 #define HAVE_MUTEX_WIN32 1
313
314 /* Define to 1 to use the GCC compiler and Windows mutexes. */
315 /* #undef HAVE_MUTEX_WIN32_GCC */
316
317 /* Define to 1 to use the GCC compiler and 64-bit x86 assembly language
318    mutexes. */
319 /* #undef HAVE_MUTEX_X86_64_GCC_ASSEMBLY */
320
321 /* Define to 1 to use the GCC compiler and 32-bit x86 assembly language
322    mutexes. */
323 /* #undef HAVE_MUTEX_X86_GCC_ASSEMBLY */
324
325 /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
326 /* #undef HAVE_NDIR_H */
327
328 /* Define to 1 if you have the O_DIRECT flag. */
329 /* #undef HAVE_O_DIRECT */
330
331 /* Define to 1 if building partitioned database support. */
332 /* #undef HAVE_PARTITION */
333
334 /* Define to 1 if you have the `pread' function. */
335 /* #undef HAVE_PREAD */
336
337 /* Define to 1 if you have the `printf' function. */
338 #define HAVE_PRINTF 1
339
340 /* Define to 1 if you have the `pstat_getdynamic' function. */
341 /* #undef HAVE_PSTAT_GETDYNAMIC */
342
343 /* Define to 1 if you have the `pthread_self' function. */
344 /* #undef HAVE_PTHREAD_SELF */
345
346 /* Define to 1 if you have the `pthread_yield' function. */
347 /* #undef HAVE_PTHREAD_YIELD */
348
349 /* Define to 1 if you have the `pwrite' function. */
350 /* #undef HAVE_PWRITE */
351
352 /* Define to 1 if building on QNX. */
353 /* #undef HAVE_QNX */
354
355 /* Define to 1 if you have the `qsort' function. */
356 #define HAVE_QSORT 1
357
358 /* Define to 1 if building Queue access method. */
359 #ifndef HAVE_SMALLBUILD
360 #define HAVE_QUEUE 1
361 #endif
362
363 /* Define to 1 if you have the `raise' function. */
364 #define HAVE_RAISE 1
365
366 /* Define to 1 if you have the `rand' function. */
367 #define HAVE_RAND 1
368
369 /* Define to 1 if you have the `random' function. */
370 /* #undef HAVE_RANDOM */
371
372 /* Define to 1 if building replication support. */
373 /* #undef HAVE_REPLICATION */
374
375 /* Define to 1 if building the Berkeley DB replication framework. */
376 /* #undef HAVE_REPLICATION_THREADS */
377
378 /* Define to 1 if building RPC client/server. */
379 /* #undef HAVE_RPC */
380
381 /* Define to 1 if building on S60. */
382 /* #undef HAVE_S60 */
383
384 /* Define to 1 if you have the `sched_yield' function. */
385 /* #undef HAVE_SCHED_YIELD */
386
387 /* Define to 1 if you have the `select' function. */
388 /* #undef HAVE_SELECT */
389
390 /* Define to 1 if you have the `setgid' function. */
391 /* #undef HAVE_SETGID */
392
393 /* Define to 1 if you have the `setuid' function. */
394 #define HAVE_SETUID 1
395
396 /* Define to 1 to configure Berkeley DB to use shared, read/write latches. */
397 #define HAVE_SHARED_LATCHES 1
398
399 /* Define to 1 if shmctl/SHM_LOCK locks down shared memory segments. */
400 /* #undef HAVE_SHMCTL_SHM_LOCK */
401
402 /* Define to 1 if you have the `shmget' function. */
403 /* #undef HAVE_SHMGET */
404
405 /* Define to 1 if you have the `sigaction' function. */
406 /* #undef HAVE_SIGACTION */
407
408 /* Define to 1 if thread identifier type db_threadid_t is integral. */
409 #define HAVE_SIMPLE_THREAD_TYPE 1
410
411 /* Define to 1 if you have the `snprintf' function. */
412 #define HAVE_SNPRINTF 1
413
414 /* Define to 1 if you have the `stat' function. */
415 #define HAVE_STAT 1
416
417 /* Define to 1 if building statistics support. */
418 #define HAVE_STATISTICS 1
419
420 /* Define to 1 if you have the <stdint.h> header file. */
421 /* #undef HAVE_STDINT_H */
422
423 /* Define to 1 if you have the <stdlib.h> header file. */
424 #define HAVE_STDLIB_H 1
425
426 /* Define to 1 if you have the `strcasecmp' function. */
427 #define HAVE_STRCASECMP 1
428
429 /* Define to 1 if you have the `strcat' function. */
430 #define HAVE_STRCAT 1
431
432 /* Define to 1 if you have the `strchr' function. */
433 #define HAVE_STRCHR 1
434
435 /* Define to 1 if you have the `strdup' function. */
436 /* #undef HAVE_STRDUP */
437
438 /* Define to 1 if you have the `strerror' function. */
439 /* #undef HAVE_STRERROR */
440
441 /* Define to 1 if you have the `strftime' function. */
442 /* #undef HAVE_STRFTIME */
443
444 /* Define to 1 if you have the <strings.h> header file. */
445 #define HAVE_STRINGS_H 1
446
447 /* Define to 1 if you have the <string.h> header file. */
448 #define HAVE_STRING_H 1
449
450 /* Define to 1 if you have the `strncat' function. */
451 #define HAVE_STRNCAT 1
452
453 /* Define to 1 if you have the `strncmp' function. */
454 #define HAVE_STRNCMP 1
455
456 /* Define to 1 if you have the `strrchr' function. */
457 #define HAVE_STRRCHR 1
458
459 /* Define to 1 if you have the `strsep' function. */
460 /* #undef HAVE_STRSEP */
461
462 /* Define to 1 if you have the `strtol' function. */
463 #define HAVE_STRTOL 1
464
465 /* Define to 1 if you have the `strtoul' function. */
466 #define HAVE_STRTOUL 1
467
468 /* Define to 1 if `st_blksize' is member of `struct stat'. */
469 /* #undef HAVE_STRUCT_STAT_ST_BLKSIZE */
470
471 /* Define to 1 if you have the `sysconf' function. */
472 /* #undef HAVE_SYSCONF */
473
474 /* Define to 1 if port includes files in the Berkeley DB source code. */
475 /* #undef HAVE_SYSTEM_INCLUDE_FILES */
476
477 /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
478    */
479 /* #undef HAVE_SYS_DIR_H */
480
481 /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
482    */
483 /* #undef HAVE_SYS_NDIR_H */
484
485 /* Define to 1 if you have the <sys/select.h> header file. */
486 /* #undef HAVE_SYS_SELECT_H */
487
488 /* Define to 1 if you have the <sys/socket.h> header file. */
489 /* #undef HAVE_SYS_SOCKET_H */
490
491 /* Define to 1 if you have the <sys/stat.h> header file. */
492 #define HAVE_SYS_STAT_H 1
493
494 /* Define to 1 if you have the <sys/time.h> header file. */
495 /* #undef HAVE_SYS_TIME_H */
496
497 /* Define to 1 if you have the <sys/types.h> header file. */
498 #define HAVE_SYS_TYPES_H 1
499
500 /* Define to 1 if you have the `time' function. */
501 /* #undef HAVE_TIME */
502
503 /* Define to 1 if you have the <unistd.h> header file. */
504 /* #undef HAVE_UNISTD_H */
505
506 /* Define to 1 if unlink of file with open file descriptors will fail. */
507 /* #undef HAVE_UNLINK_WITH_OPEN_FAILURE */
508
509 /* Define to 1 if port includes historic database upgrade support. */
510 /* #undef HAVE_UPGRADE_SUPPORT */
511
512 /* Define to 1 if building access method verification support. */
513 #ifndef HAVE_SMALLBUILD
514 #define HAVE_VERIFY 1
515 #endif
516
517 /* Define to 1 if you have the `vsnprintf' function. */
518 #define HAVE_VSNPRINTF 1
519
520 /* Define to 1 if building VxWorks. */
521 /* #undef HAVE_VXWORKS */
522
523 /* Define to 1 if you have the `yield' function. */
524 /* #undef HAVE_YIELD */
525
526 /* Define to 1 if you have the `_fstati64' function. */
527 #define HAVE__FSTATI64 1
528
529 /* Define to the sub-directory in which libtool stores uninstalled libraries. */
530 /* #undef LT_OBJDIR */
531
532 /* Define to the address where bug reports for this package should be sent. */
533 #define PACKAGE_BUGREPORT "Oracle Technology Network Berkeley DB forum"
534
535 /* Define to the full name of this package. */
536 #define PACKAGE_NAME "Berkeley DB"
537
538 /* Define to the full name and version of this package. */
539 #define PACKAGE_STRING "Berkeley DB __EDIT_DB_VERSION__"
540
541 /* Define to the one symbol short name of this package. */
542 #define PACKAGE_TARNAME "db-__EDIT_DB_VERSION__"
543
544 /* Define to the version of this package. */
545 #define PACKAGE_VERSION "__EDIT_DB_VERSION__"
546
547 /* The size of a `char', as computed by sizeof. */
548 /* #undef SIZEOF_CHAR */
549
550 /* The size of a `char *', as computed by sizeof. */
551 /* #undef SIZEOF_CHAR_P */
552
553 /* The size of a `int', as computed by sizeof. */
554 /* #undef SIZEOF_INT */
555
556 /* The size of a `long', as computed by sizeof. */
557 /* #undef SIZEOF_LONG */
558
559 /* The size of a `long long', as computed by sizeof. */
560 /* #undef SIZEOF_LONG_LONG */
561
562 /* The size of a `short', as computed by sizeof. */
563 /* #undef SIZEOF_SHORT */
564
565 /* The size of a `size_t', as computed by sizeof. */
566 /* #undef SIZEOF_SIZE_T */
567
568 /* The size of a `unsigned char', as computed by sizeof. */
569 /* #undef SIZEOF_UNSIGNED_CHAR */
570
571 /* The size of a `unsigned int', as computed by sizeof. */
572 /* #undef SIZEOF_UNSIGNED_INT */
573
574 /* The size of a `unsigned long', as computed by sizeof. */
575 /* #undef SIZEOF_UNSIGNED_LONG */
576
577 /* The size of a `unsigned long long', as computed by sizeof. */
578 /* #undef SIZEOF_UNSIGNED_LONG_LONG */
579
580 /* The size of a `unsigned short', as computed by sizeof. */
581 /* #undef SIZEOF_UNSIGNED_SHORT */
582
583 /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
584 /* #undef STAT_MACROS_BROKEN */
585
586 /* Define to 1 if you have the ANSI C header files. */
587 #define STDC_HEADERS 1
588
589 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
590 /* #undef TIME_WITH_SYS_TIME */
591
592 /* Define to 1 to mask harmless uninitialized memory read/writes. */
593 /* #undef UMRW */
594
595 /* Number of bits in a file offset, on hosts where this is settable. */
596 /* #undef _FILE_OFFSET_BITS */
597
598 /* Define for large files, on AIX-style hosts. */
599 /* #undef _LARGE_FILES */
600
601 /* Define to empty if `const' does not conform to ANSI C. */
602 /* #undef const */
603
604 /* Define to `__inline__' or `__inline' if that's what the C compiler
605    calls it, or to nothing if 'inline' is not supported under any name.  */
606 #ifndef __cplusplus
607 #define inline __inline
608 #endif
609
610 /* type to use in place of socklen_t if not defined */
611 /* #undef socklen_t */