File: config-mac.h

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (952 lines) | stat: -rw-r--r-- 28,297 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
/* config/config.h.  Generated from config.h.in by configure.  */
/* config/config.h.in.  Generated from configure.ac by autoheader.  */

/* Define to 1 to call abort() on panics (internal errors), for debugging. */
/* #undef ABORT_ON_PANIC */

/* Define if building universal (internal helper macro) */
/* #undef AC_APPLE_UNIVERSAL_BUILD */

/* Define to 1 if compiled with the -fdata-sections compiler flag */
#define CFLAGS_FDATA_SECTIONS 1

/* Define to 1 if compiled with the -ffat-lto-objects compiler flag */
/* #undef CFLAGS_FFAT_LTO_OBJECTS */

/* Define to 1 if compiled with the -ffunction-sections compiler flag */
#define CFLAGS_FFUNCTION_SECTIONS 1

/* Define to 1 if compiled with the -fgnu89-inline compiler flag */
/* #undef CFLAGS_FGNU89_INLINE */

/* Define to 1 if compiled with the -flto compiler flag */
/* #undef CFLAGS_FLTO */

/* Define to 1 if compiled with the -flto=auto compiler flag */
/* #undef CFLAGS_FLTO_AUTO */

/* Define to 1 if compiled with the -fno-common compiler flag */
#define CFLAGS_FNO_COMMON 1

/* Define to 1 if compiled with the -fno-omit-frame-pointer compiler flag */
/* #undef CFLAGS_FNO_OMIT_FRAME_POINTER */

/* Define to 1 if compiled with the -fsanitize=address compiler flag */
/* #undef CFLAGS_FSANITIZE_ADDRESS */

/* Define to 1 if compiled with the -fsanitize=undefined compiler flag */
/* #undef CFLAGS_FSANITIZE_UNDEFINED */

/* Define to 1 if compiled with the -ftrivial-auto-var-init=zero compiler flag
   */
#define CFLAGS_FTRIVIAL_AUTO_VAR_INIT_ZERO 1

/* Define to 1 if compiled with the -fvisibility=hidden compiler flag */
#define CFLAGS_FVISIBILITY_HIDDEN 1

/* Define to 1 if compiled with the -fwrapv compiler flag */
#define CFLAGS_FWRAPV 1

/* Define to 1 if compiled with the -g3 compiler flag */
/* #undef CFLAGS_G3 */

/* Define to 1 if compiled with the -ggdb3 compiler flag */
#define CFLAGS_GGDB3 1

/* Define to 1 if compiled with the -O0 compiler flag */
/* #undef CFLAGS_O0 */

/* Define to 1 if compiled with the -Og compiler flag */
/* #undef CFLAGS_OG */

/* Define to 1 if compiled with the -pedantic compiler flag */
#define CFLAGS_PEDANTIC 1

/* Define to 1 if compiled with the -pg compiler flag */
/* #undef CFLAGS_PG */

/* Define to 1 if compiled with the -U__STRICT_ANSI__ compiler flag */
#define CFLAGS_U_STRICT_ANSI 1

/* Define to 1 if compiled with the -W compiler flag */
#define CFLAGS_W 1

/* Define to 1 if compiled with the -Wall compiler flag */
#define CFLAGS_WALL 1

/* Define to 1 if compiled with the -Werror compiler flag */
/* #undef CFLAGS_WERROR */

/* Define to 1 if compiled with the -Werror=comment compiler flag */
#define CFLAGS_WERROR_COMMENT 1

/* Define to 1 if compiled with the -Werror=implicit compiler flag */
#define CFLAGS_WERROR_IMPLICIT 1

/* Define to 1 if compiled with the -Werror=missing-braces compiler flag */
#define CFLAGS_WERROR_MISSING_BRACES 1

/* Define to 1 if compiled with the -Werror=missing-declarations compiler flag
   */
#define CFLAGS_WERROR_MISSING_DECLARATIONS 1

/* Define to 1 if compiled with the -Werror=missing-prototypes compiler flag
   */
#define CFLAGS_WERROR_MISSING_PROTOTYPES 1

/* Define to 1 if compiled with the -Werror=pointer-arith compiler flag */
#define CFLAGS_WERROR_POINTER_ARITH 1

/* Define to 1 if compiled with the -Werror=return-type compiler flag */
#define CFLAGS_WERROR_RETURN_TYPE 1

/* Define to 1 if compiled with the -Werror=strict-prototypes compiler flag */
#define CFLAGS_WERROR_STRICT_PROTOTYPES 1

/* Define to 1 if compiled with the -Werror=trigraphs compiler flag */
#define CFLAGS_WERROR_TRIGRAPHS 1

/* Define to 1 if compiled with the -Werror=unknown-warning-option compiler
   flag */
#define CFLAGS_WERROR_UNKNOWN_WARNING_OPTION 1

/* Define to 1 if compiled with the -Werror=vla compiler flag */
#define CFLAGS_WERROR_VLA 1

/* Define to 1 if compiled with the -Wno-long-long compiler flag */
#define CFLAGS_WNO_LONG_LONG 1

/* Define to 1 if compiled with the -Wno-pedantic-ms-format compiler flag */
/* #undef CFLAGS_WNO_PEDANTIC_MS_FORMAT */

/* Define to 1 if compiled with the -Wno-shift-negative-value compiler flag */
#define CFLAGS_WNO_SHIFT_NEGATIVE_VALUE 1

/* Define to 1 if compiled with the -Wno-stringop-truncation compiler flag */
/* #undef CFLAGS_WNO_STRINGOP_TRUNCATION */

/* Define to 1 if compiled with the -Wno-variadic-macros compiler flag */
#define CFLAGS_WNO_VARIADIC_MACROS 1

/* Define to 1 if compiled with the -Wsuggest-attribute=cold compiler flag */
/* #undef CFLAGS_WSUGGEST_ATTRIBUTE_COLD */

/* Define to 1 if compiled with the -Wsuggest-attribute=const compiler flag */
/* #undef CFLAGS_WSUGGEST_ATTRIBUTE_CONST */

/* Define to 1 if compiled with the -Wsuggest-attribute=format compiler flag
   */
/* #undef CFLAGS_WSUGGEST_ATTRIBUTE_FORMAT */

/* Define to 1 if compiled with the -Wsuggest-attribute=malloc compiler flag
   */
/* #undef CFLAGS_WSUGGEST_ATTRIBUTE_MALLOC */

/* Define to 1 if compiled with the -Wsuggest-attribute=noreturn compiler flag
   */
/* #undef CFLAGS_WSUGGEST_ATTRIBUTE_NORETURN */

/* Define to 1 if compiled with the -Wsuggest-attribute=pure compiler flag */
/* #undef CFLAGS_WSUGGEST_ATTRIBUTE_PURE */

/* Define to 1 if compiled with the -std=c11 compiler flag */
/* #undef CPPFLAGS_STD_C11 */

/* Define to 1 if compiled with the -std=c17 compiler flag */
#define CPPFLAGS_STD_C17 1

/* Define to 1 if compiled with the -std=c99 compiler flag */
/* #undef CPPFLAGS_STD_C99 */

/* Define to 1 if compiled with the -Werror=attributes compiler flag */
#define CPPFLAGS_WERROR_ATTRIBUTES 1

/* Define to 1 if you have the 'access' function. */
#define HAVE_ACCESS 1

/* Define to 1 if you have the 'canonicalize_file_name' function. */
/* #undef HAVE_CANONICALIZE_FILE_NAME */

/* Define to 1 if you have the `cpu_to_le16' intrinsic function. */
/* #undef HAVE_CPU_TO_LE16 */

/* Define to 1 if you have the `cpu_to_le32' intrinsic function. */
/* #undef HAVE_CPU_TO_LE32 */

/* Define to 1 if you have the `cpu_to_le64' intrinsic function. */
/* #undef HAVE_CPU_TO_LE64 */

/* Define to 1 if you have the declaration of 'strcasecmp', and to 0 if you
   don't. */
#define HAVE_DECL_STRCASECMP 1

/* Define to 1 if you have the declaration of 'stricmp', and to 0 if you
   don't. */
#define HAVE_DECL_STRICMP 0

/* Define to 1 if you have the declaration of 'strlcpy', and to 0 if you
   don't. */
#define HAVE_DECL_STRLCPY 1

/* Define to 1 if you have the declaration of 'strncasecmp', and to 0 if you
   don't. */
#define HAVE_DECL_STRNCASECMP 1

/* Define to 1 if you have the declaration of 'strnicmp', and to 0 if you
   don't. */
#define HAVE_DECL_STRNICMP 0

/* Define to 1 if you have the declaration of 'strnlen', and to 0 if you
   don't. */
#define HAVE_DECL_STRNLEN 1

/* Define to 1 if you have the declaration of 'strrchrnul', and to 0 if you
   don't. */
#define HAVE_DECL_STRRCHRNUL 0

/* Define to 1 if you have the declaration of 'strsep', and to 0 if you don't.
   */
#define HAVE_DECL_STRSEP 1

/* Define to 1 if you have the <endian.h> header file. */
/* #undef HAVE_ENDIAN_H */

/* Define to 1 if you have the 'faccessat' function. */
#define HAVE_FACCESSAT 1

/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1

/* Define to 1 if you have the 'fileno' function. */
#define HAVE_FILENO 1

/* Define to 1 if fseeko (and ftello) are declared in stdio.h. */
#define HAVE_FSEEKO 1

/* Define to 1 if you have the 'fstat' function. */
#define HAVE_FSTAT 1

/* Define to 1 if you have the 'ftruncate' function. */
#define HAVE_FTRUNCATE 1

/* Define to 1 if your compiler supports the alloc_size function attribute */
#define HAVE_FUNC_ATTRIBUTE1_ALLOC_SIZE 1

/* Define to 1 if your compiler supports the alloc_size function attribute */
#define HAVE_FUNC_ATTRIBUTE2_ALLOC_SIZE 1

/* Define to 1 if your compiler supports the format function attribute */
#define HAVE_FUNC_ATTRIBUTE3_FORMAT 1

/* Define to 1 if your compiler supports the cold function attribute */
#define HAVE_FUNC_ATTRIBUTE_COLD 1

/* Define to 1 if your compiler supports the const function attribute */
#define HAVE_FUNC_ATTRIBUTE_CONST 1

/* Define to 1 if your compiler supports the error attribute on functions */
#define HAVE_FUNC_ATTRIBUTE_ERROR 1

/* Define to 1 if your compiler supports the malloc function attribute */
#define HAVE_FUNC_ATTRIBUTE_MALLOC 1

/* Define to 1 if your compiler supports the noreturn function attribute */
#define HAVE_FUNC_ATTRIBUTE_NORETURN 1

/* Define to 1 if your compiler supports the pure function attribute */
#define HAVE_FUNC_ATTRIBUTE_PURE 1

/* Define to 1 if your compiler supports the returns_nonnull function
   attribute */
#define HAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL 1

/* Define to 1 if your compiler supports the sentinel function attribute */
#define HAVE_FUNC_ATTRIBUTE_SENTINEL 1

/* Define to 1 if your compiler supports the unused function attribute */
#define HAVE_FUNC_ATTRIBUTE_UNUSED 1

/* Define to 1 if your compiler supports the used function attribute */
#define HAVE_FUNC_ATTRIBUTE_USED 1

/* Define to 1 if your compiler supports the alloc_size attribute on function
   pointers */
#define HAVE_FUNC_PTR_ATTRIBUTE1_ALLOC_SIZE 1

/* Define to 1 if your compiler supports the alloc_size attribute on function
   pointers */
#define HAVE_FUNC_PTR_ATTRIBUTE2_ALLOC_SIZE 1

/* Define to 1 if your compiler supports the format attribute on function
   pointers */
#define HAVE_FUNC_PTR_ATTRIBUTE3_FORMAT 1

/* Define to 1 if your compiler supports the cold attribute on function
   pointers */
/* #undef HAVE_FUNC_PTR_ATTRIBUTE_COLD */

/* Define to 1 if your compiler supports the const attribute on function
   pointers */
#define HAVE_FUNC_PTR_ATTRIBUTE_CONST 1

/* Define to 1 if your compiler supports the malloc attribute on function
   pointers */
/* #undef HAVE_FUNC_PTR_ATTRIBUTE_MALLOC */

/* Define to 1 if your compiler supports the noreturn attribute on function
   pointers */
#define HAVE_FUNC_PTR_ATTRIBUTE_NORETURN 1

/* Define to 1 if your compiler supports the pure attribute on function
   pointers */
#define HAVE_FUNC_PTR_ATTRIBUTE_PURE 1

/* Define to 1 if your compiler supports the returns_nonnull attribute on
   function pointers */
/* #undef HAVE_FUNC_PTR_ATTRIBUTE_RETURNS_NONNULL */

/* Define to 1 if your compiler supports the sentinel attribute on function
   pointers */
/* #undef HAVE_FUNC_PTR_ATTRIBUTE_SENTINEL */

/* Define to 1 if your compiler supports the unused attribute on function
   pointers */
#define HAVE_FUNC_PTR_ATTRIBUTE_UNUSED 1

/* Define to 1 if your compiler supports the used attribute on function
   pointers */
/* #undef HAVE_FUNC_PTR_ATTRIBUTE_USED */

/* Define to 1 if you have the 'getgid' function. */
#define HAVE_GETGID 1

/* Define to 1 if you have the 'getpagesize' function. */
#define HAVE_GETPAGESIZE 1

/* Define to 1 if you have the 'getrlimit' function. */
#define HAVE_GETRLIMIT 1

/* Define to 1 if you have the 'getuid' function. */
#define HAVE_GETUID 1

/* Define to 1 if you have the `htole16' intrinsic function. */
/* #undef HAVE_HTOLE16 */

/* Define to 1 if you have the `htole32' intrinsic function. */
/* #undef HAVE_HTOLE32 */

/* Define to 1 if you have the `htole64' intrinsic function. */
/* #undef HAVE_HTOLE64 */

/* Define to 1 if you have the <intrin.h> header file. */
/* #undef HAVE_INTRIN_H */

/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1

/* Define to 1 if you have the <io.h> header file. */
/* #undef HAVE_IO_H */

/* Define to 1 if you have the 'isascii' function. */
#define HAVE_ISASCII 1

/* Define to 1 if you have the 'iscntrl' function. */
/* #undef HAVE_ISCNTRL */

/* Define to 1 if you have the <machine/endian.h> header file. */
#define HAVE_MACHINE_ENDIAN_H 1

/* Define to 1 if you have the 'mempcpy' function. */
/* #undef HAVE_MEMPCPY */

/* Define to 1 if you have the 'mempset' function. */
/* #undef HAVE_MEMPSET */

/* Define to 1 if you have the <minix/config.h> header file. */
/* #undef HAVE_MINIX_CONFIG_H */

/* Define to 1 if you have a working 'mmap' system call. */
#define HAVE_MMAP 1

/* Define to 1 if you have the 'pathconf' function. */
#define HAVE_PATHCONF 1

/* Define to 1 if you have the 'realpath' function. */
#define HAVE_REALPATH 1

/* Define to 1 if you have some version of the snprintf function. */
#define HAVE_SNPRINTF 1

/* Define to 1 if you have the 'stat' function. */
#define HAVE_STAT 1

/* Define to 1 if you have the <stdarg.h> header file. */
#define HAVE_STDARG_H 1

/* Define to 1 if stdbool.h conforms to C99. */
/* #undef HAVE_STDBOOL_H */

/* Define to 1 if your compiler supports C99 extern inline */
#define HAVE_STDC_INLINE 1

/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1

/* Define to 1 if you have the <stdio.h> header file. */
#define HAVE_STDIO_H 1

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1

/* Define to 1 if you have the <stdnoreturn.h> header file. */
#define HAVE_STDNORETURN_H 1

/* Define to 1 if you have the 'strcasecmp' function. */
#define HAVE_STRCASECMP 1

/* Define to 1 if you have the 'stricmp' function. */
/* #undef HAVE_STRICMP */

/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1

/* Define to 1 if you have the 'strlcpy' function. */
#define HAVE_STRLCPY 1

/* Define to 1 if you have the 'strncasecmp' function. */
#define HAVE_STRNCASECMP 1

/* Define to 1 if you have the 'strnicmp' function. */
/* #undef HAVE_STRNICMP */

/* Define to 1 if you have the 'strnlen' function. */
#define HAVE_STRNLEN 1

/* Define to 1 if you have the 'strrchrnul' function. */
/* #undef HAVE_STRRCHRNUL */

/* Define to 1 if you have the 'strsep' function. */
#define HAVE_STRSEP 1

/* Define to 1 if the system has the type 'struct stat'. */
#define HAVE_STRUCT_STAT 1

/* Define to 1 if the system has the type 'struct _stati64'. */
/* #undef HAVE_STRUCT__STATI64 */

/* Define to 1 if you have the 'sysconf' function. */
#define HAVE_SYSCONF 1

/* Define to 1 if you have the <sys/endian.h> header file. */
/* #undef HAVE_SYS_ENDIAN_H */

/* Define to 1 if you have the <sys/mman.h> header file. */
#define HAVE_SYS_MMAN_H 1

/* Define to 1 if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1

/* Define to 1 if you have the <sys/resource.h> header file. */
#define HAVE_SYS_RESOURCE_H 1

/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1

/* Define to 1 if you have the 'S_ISREG' function. */
/* #undef HAVE_S_ISREG */

/* Define to 1 if you have some version of the typeof operator. */
#define HAVE_TYPEOF 1

/* Define to 1 if the system has the type 'uintptr_t'. */
#define HAVE_UINTPTR_T 1

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1

/* define to 1 if your compiler supports C99 __VA_ARGS__ variadic macros. */
#define HAVE_VARIADIC_MACROS 1

/* Define to 1 if you have some version of the vsnprintf function. */
#define HAVE_VSNPRINTF 1

/* Define to 1 if you have the <wchar.h> header file. */
#define HAVE_WCHAR_H 1

/* Define to 1 if you have the '_access' function. */
/* #undef HAVE__ACCESS */

/* Define to 1 if you have the `_BitScanReverse' intrinsic function. */
/* #undef HAVE__BITSCANREVERSE */

/* Define to 1 if you have the `_BitScanReverse64' intrinsic function. */
/* #undef HAVE__BITSCANREVERSE64 */

/* Define to 1 if the system has the type '_Bool'. */
#define HAVE__BOOL 1

/* Define to 1 if you have the `_byteswap_uint64' intrinsic function. */
/* #undef HAVE__BYTESWAP_UINT64 */

/* Define to 1 if you have the `_byteswap_ulong' intrinsic function. */
/* #undef HAVE__BYTESWAP_ULONG */

/* Define to 1 if you have the `_byteswap_ushort' intrinsic function. */
/* #undef HAVE__BYTESWAP_USHORT */

/* Define to 1 if you have the '_chsize' function. */
/* #undef HAVE__CHSIZE */

/* Define to 1 if you have the '_chsize_s' function. */
/* #undef HAVE__CHSIZE_S */

/* Define to 1 if you have the '_fileno' function. */
/* #undef HAVE__FILENO */

/* Define to 1 if you have the '_fseeki64' function. */
/* #undef HAVE__FSEEKI64 */

/* Define to 1 if you have the '_fstati64' function. */
/* #undef HAVE__FSTATI64 */

/* Define to 1 if you have the '_fullpath' function. */
/* #undef HAVE__FULLPATH */

/* Define to 1 if you have the '_stati64' function. */
/* #undef HAVE__STATI64 */

/* Define to 1 if you have the `__bswap_16' intrinsic function. */
/* #undef HAVE___BSWAP_16 */

/* Define to 1 if you have the `__bswap_32' intrinsic function. */
/* #undef HAVE___BSWAP_32 */

/* Define to 1 if you have the `__bswap_64' intrinsic function. */
/* #undef HAVE___BSWAP_64 */

/* Define to 1 if you have the `__builtin_bswap16' intrinsic function. */
#define HAVE___BUILTIN_BSWAP16 1

/* Define to 1 if you have the `__builtin_bswap32' intrinsic function. */
#define HAVE___BUILTIN_BSWAP32 1

/* Define to 1 if you have the `__builtin_bswap64' intrinsic function. */
#define HAVE___BUILTIN_BSWAP64 1

/* Define to 1 if you have the `__builtin_choose_expr' intrinsic function. */
#define HAVE___BUILTIN_CHOOSE_EXPR 1

/* Define to 1 if you have the `__builtin_clz' intrinsic function. */
#define HAVE___BUILTIN_CLZ 1

/* Define to 1 if you have the `__builtin_clzl' intrinsic function. */
#define HAVE___BUILTIN_CLZL 1

/* Define to 1 if you have the `__builtin_clzll' intrinsic function. */
#define HAVE___BUILTIN_CLZLL 1

/* Define to 1 if you have the `__builtin_constant_p' intrinsic function. */
#define HAVE___BUILTIN_CONSTANT_P 1

/* Define to 1 if you have the `__builtin_expect' intrinsic function. */
#define HAVE___BUILTIN_EXPECT 1

/* Define to 1 if you have the `__cpu_to_le16' intrinsic function. */
/* #undef HAVE___CPU_TO_LE16 */

/* Define to 1 if you have the `__cpu_to_le32' intrinsic function. */
/* #undef HAVE___CPU_TO_LE32 */

/* Define to 1 if you have the `__cpu_to_le64' intrinsic function. */
/* #undef HAVE___CPU_TO_LE64 */

/* Define to 1 if compiled with the -Wl */
/* #undef LDFLAGS_WL_AS_NEEDED */

/* Define to 1 if compiled with the -Wl */
/* #undef LDFLAGS_WL_GC_SECTIONS */

/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""

/* Define to the full name of this package. */
#define PACKAGE_NAME ""

/* Define to the full name and version of this package. */
#define PACKAGE_STRING ""

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME ""

/* Define to the home page for this package. */
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION ""

/* Define to 1 if all of the C89 standard headers exist (not just the ones
   required in a freestanding environment). This macro is provided for
   backward compatibility; new code need not use it. */
#define STDC_HEADERS 1

/* Enable extensions on AIX, Interix, z/OS.  */
#ifndef _ALL_SOURCE
# define _ALL_SOURCE 1
#endif
/* Enable general extensions on macOS.  */
#ifndef _DARWIN_C_SOURCE
# define _DARWIN_C_SOURCE 1
#endif
/* Enable general extensions on Solaris.  */
#ifndef __EXTENSIONS__
# define __EXTENSIONS__ 1
#endif
/* Enable GNU extensions on systems that have them.  */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
#endif
/* Enable X/Open compliant socket functions that do not require linking
   with -lxnet on HP-UX 11.11.  */
#ifndef _HPUX_ALT_XOPEN_SOCKET_API
# define _HPUX_ALT_XOPEN_SOCKET_API 1
#endif
/* Identify the host operating system as Minix.
   This macro does not affect the system headers' behavior.
   A future release of Autoconf may stop defining this macro.  */
#ifndef _MINIX
/* # undef _MINIX */
#endif
/* Enable general extensions on NetBSD.
   Enable NetBSD compatibility extensions on Minix.  */
#ifndef _NETBSD_SOURCE
# define _NETBSD_SOURCE 1
#endif
/* Enable OpenBSD compatibility extensions on NetBSD.
   Oddly enough, this does nothing on OpenBSD.  */
#ifndef _OPENBSD_SOURCE
# define _OPENBSD_SOURCE 1
#endif
/* Define to 1 if needed for POSIX-compatible behavior.  */
#ifndef _POSIX_SOURCE
/* # undef _POSIX_SOURCE */
#endif
/* Define to 2 if needed for POSIX-compatible behavior.  */
#ifndef _POSIX_1_SOURCE
/* # undef _POSIX_1_SOURCE */
#endif
/* Enable POSIX-compatible threading on Solaris.  */
#ifndef _POSIX_PTHREAD_SEMANTICS
# define _POSIX_PTHREAD_SEMANTICS 1
#endif
/* Enable extensions specified by ISO/IEC TS 18661-5:2014.  */
#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
# define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1
#endif
/* Enable extensions specified by ISO/IEC TS 18661-1:2014.  */
#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
# define __STDC_WANT_IEC_60559_BFP_EXT__ 1
#endif
/* Enable extensions specified by ISO/IEC TS 18661-2:2015.  */
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
# define __STDC_WANT_IEC_60559_DFP_EXT__ 1
#endif
/* Enable extensions specified by C23 Annex F.  */
#ifndef __STDC_WANT_IEC_60559_EXT__
# define __STDC_WANT_IEC_60559_EXT__ 1
#endif
/* Enable extensions specified by ISO/IEC TS 18661-4:2015.  */
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
# define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1
#endif
/* Enable extensions specified by C23 Annex H and ISO/IEC TS 18661-3:2015.  */
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
# define __STDC_WANT_IEC_60559_TYPES_EXT__ 1
#endif
/* Enable extensions specified by ISO/IEC TR 24731-2:2010.  */
#ifndef __STDC_WANT_LIB_EXT2__
# define __STDC_WANT_LIB_EXT2__ 1
#endif
/* Enable extensions specified by ISO/IEC 24747:2009.  */
#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
# define __STDC_WANT_MATH_SPEC_FUNCS__ 1
#endif
/* Enable extensions on HP NonStop.  */
#ifndef _TANDEM_SOURCE
# define _TANDEM_SOURCE 1
#endif
/* Enable X/Open extensions.  Define to 500 only if necessary
   to make mbstate_t available.  */
#ifndef _XOPEN_SOURCE
/* # undef _XOPEN_SOURCE */
#endif


/* Define to 1 to include code specifically indended to help debugging. */
/* #undef WITH_DEBUG */

/* Define to 1 to include code specifically indended to help profiling. */
/* #undef WITH_PROFILING */

/* Define to 1 if your processor stores words with the most significant byte
   first (like Motorola and SPARC, unlike Intel and VAX). */
/* #undef WORDS_BIGENDIAN */

/* Define to 1 if your processor stores words with the least significant byte
   first (like Intel and VAX, unlike Motorola and SPARC). */
#define WORDS_LITTLEENDIAN 1

/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS */

/* Define to 1 if necessary to make fseeko visible. */
/* #undef _LARGEFILE_SOURCE */

/* Define to 1 on platforms where this makes off_t a 64-bit type. */
/* #undef _LARGE_FILES */

/* Number of bits in time_t, on hosts where this is settable. */
/* #undef _TIME_BITS */

/* Define to 1 on platforms where this makes time_t a 64-bit type. */
/* #undef __MINGW_USE_VC2005_COMPAT */

/* Define to empty if 'const' does not conform to ANSI C. */
/* #undef const */

/* Define to '__inline__' or '__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
/* #undef inline */
#endif

/* Define to the equivalent of the C99 'restrict' keyword, or to
   nothing if this is not supported.  Do not define if restrict is
   supported only directly.  */
#define restrict __restrict__
/* Work around a bug in older versions of Sun C++, which did not
   #define __restrict__ or support _Restrict or __restrict__
   even though the corresponding Sun C compiler ended up with
   "#define restrict _Restrict" or "#define restrict __restrict__"
   in the previous line.  This workaround can be removed once
   we assume Oracle Developer Studio 12.5 (2016) or later.  */
#if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
# define _Restrict
# define __restrict__
#endif

/* Define as 'unsigned int' if <stddef.h> doesn't define. */
/* #undef size_t */

/* Define if your snprintf function is not named snprintf. */
/* #undef snprintf */

/* Define if your typeof operator is not named `typeof'. */
#define typeof __typeof

/* Define to the type of an unsigned integer type wide enough to hold a
   pointer, if such a type exists, and if the system does not define it. */
/* #undef uintptr_t */

/* Define if your vsnprintf function is not named vsnprintf. */
/* #undef vsnprintf */


/* Begin unconfig.h */

#ifndef alloc_size_func2
# ifdef HAVE_FUNC_ATTRIBUTE2_ALLOC_SIZE
#  define alloc_size_func2(x1,x2) ATTRIBUTE(alloc_size(x1,x2))
# else
#  define alloc_size_func2(x1,x2)
# endif
#endif

#ifndef alloc_size_func2_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE2_ALLOC_SIZE
#  define alloc_size_func2_ptr(x1,x2) ATTRIBUTE(alloc_size(x1,x2))
# else
#  define alloc_size_func2_ptr(x1,x2)
# endif
#endif

#ifndef end_with_null
# ifdef HAVE_FUNC_ATTRIBUTE_SENTINEL
#  define end_with_null ATTRIBUTE(sentinel)
# else
#  define end_with_null
# endif
#endif

#ifndef end_with_null_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_SENTINEL
#  define end_with_null_ptr ATTRIBUTE(sentinel)
# else
#  define end_with_null_ptr
# endif
#endif

#ifndef format_func3
# ifdef HAVE_FUNC_ATTRIBUTE3_FORMAT
#  define format_func3(x1,x2,x3) ATTRIBUTE(format(x1,x2,x3))
# else
#  define format_func3(x1,x2,x3)
# endif
#endif

#ifndef format_func3_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE3_FORMAT
#  define format_func3_ptr(x1,x2,x3) ATTRIBUTE(format(x1,x2,x3))
# else
#  define format_func3_ptr(x1,x2,x3)
# endif
#endif

#ifndef const_func
# ifdef HAVE_FUNC_ATTRIBUTE_CONST
#  define const_func ATTRIBUTE(const)
# else
#  define const_func
# endif
#endif

#ifndef const_func_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_CONST
#  define const_func_ptr ATTRIBUTE(const)
# else
#  define const_func_ptr
# endif
#endif

#ifndef pure_func
# ifdef HAVE_FUNC_ATTRIBUTE_PURE
#  define pure_func ATTRIBUTE(pure)
# else
#  define pure_func
# endif
#endif

#ifndef pure_func_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_PURE
#  define pure_func_ptr ATTRIBUTE(pure)
# else
#  define pure_func_ptr
# endif
#endif

#ifndef noreturn_func
# ifdef HAVE_FUNC_ATTRIBUTE_NORETURN
#  define noreturn_func ATTRIBUTE(noreturn)
# else
#  define noreturn_func
# endif
#endif

#ifndef unlikely_func
# ifdef HAVE_FUNC_ATTRIBUTE_COLD
#  define unlikely_func ATTRIBUTE(cold)
# else
#  define unlikely_func
# endif
#endif

#ifndef unlikely_func_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_COLD
#  define unlikely_func_ptr ATTRIBUTE(cold)
# else
#  define unlikely_func_ptr
# endif
#endif

#ifndef used_func
# ifdef HAVE_FUNC_ATTRIBUTE_USED
#  define used_func ATTRIBUTE(used)
# else
#  define used_func
# endif
#endif

#ifndef used_func_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_USED
#  define used_func_ptr ATTRIBUTE(used)
# else
#  define used_func_ptr
# endif
#endif

#ifndef unused_func
# ifdef HAVE_FUNC_ATTRIBUTE_UNUSED
#  define unused_func ATTRIBUTE(unused)
# else
#  define unused_func
# endif
#endif

#ifndef unused_func_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_UNUSED
#  define unused_func_ptr ATTRIBUTE(unused)
# else
#  define unused_func_ptr
# endif
#endif

#ifndef noreturn_func_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_NORETURN
#  define noreturn_func_ptr ATTRIBUTE(noreturn)
# else
#  define noreturn_func_ptr
# endif
#endif

#ifndef never_null
# ifdef HAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL
#  define never_null ATTRIBUTE(returns_nonnull)
# else
#  define never_null
# endif
#endif

#ifndef never_null_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_RETURNS_NONNULL
#  define never_null_ptr ATTRIBUTE(returns_nonnull)
# else
#  define never_null_ptr
# endif
#endif

#ifndef malloc_func
# ifdef HAVE_FUNC_ATTRIBUTE_MALLOC
#  define malloc_func ATTRIBUTE(malloc)
# else
#  define malloc_func
# endif
#endif

#ifndef malloc_func_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE_MALLOC
#  define malloc_func_ptr ATTRIBUTE(malloc)
# else
#  define malloc_func_ptr
# endif
#endif

#ifndef alloc_size_func1
# ifdef HAVE_FUNC_ATTRIBUTE1_ALLOC_SIZE
#  define alloc_size_func1(x1) ATTRIBUTE(alloc_size(x1))
# else
#  define alloc_size_func1(x1)
# endif
#endif

#ifndef alloc_size_func1_ptr
# ifdef HAVE_FUNC_PTR_ATTRIBUTE1_ALLOC_SIZE
#  define alloc_size_func1_ptr(x1) ATTRIBUTE(alloc_size(x1))
# else
#  define alloc_size_func1_ptr(x1)
# endif
#endif