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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.ac by autoheader. */
/***** begin user configuration section *****/
/* Define this to be the location of your password file */
/* Define this to be the name of your NIS/YP password *
* map (if applicable) */
/* Define to 1 if you want user names to be cached */
/* Define to 1 if system supports job control */
/* Define this if you use "suspended" instead of "stopped" */
/* The default history buffer size in lines */
/* The default editor for the fc builtin */
/* The default prefix for temporary files */
/***** end of user configuration section *****/
/***** shouldn't have to change anything below here *****/
/* Define to 1 if you want to use dynamically loaded modules on AIX. */
/* #undef AIXDYNAMIC */
/* Define to 1 if the isprint() function is broken under UTF-8 locale. */
/* #undef BROKEN_ISPRINT */
/* Define to 1 if kill(pid, 0) doesn't return ESRCH, ie BeOS R4.51. */
/* #undef BROKEN_KILL_ESRCH */
/* Define to 1 if sigsuspend() is broken */
/* #undef BROKEN_POSIX_SIGSUSPEND */
/* Define to 1 if tcsetpgrp() doesn't work, ie BeOS R4.51. */
/* #undef BROKEN_TCSETPGRP */
/* Define to 1 if you use BSD style signal handling (and can block signals).
*/
/* #undef BSD_SIGNALS */
/* Undefine if you don't want local features. By default this is defined. */
/* Define to a custom value for the ZSH_PATCHLEVEL parameter */
/* #undef CUSTOM_PATCHLEVEL */
/* Define to 1 if using 'alloca.c'. */
/* #undef C_ALLOCA */
/* Define to 1 if you want to debug zsh. */
/* #undef DEBUG */
/* The default path; used when running commands with command -p */
/* Define default pager used by readnullcmd */
/* Define to 1 if you want to avoid calling functions that will require
dynamic NSS modules. */
/* #undef DISABLE_DYNAMIC_NSS */
/* Define to 1 if an underscore has to be prepended to dlsym() argument. */
/* #undef DLSYM_NEEDS_UNDERSCORE */
/* The extension used for dynamically loaded modules. */
/* Define to 1 if you want to use dynamically loaded modules. */
/* Define to 1 if multiple modules defining the same symbol are OK. */
/* Define to 1 if you want use unicode9 character widths. */
/* #undef ENABLE_UNICODE9 */
/* Define to 1 if getcwd() calls malloc to allocate memory. */
/* Define to 1 if the `getpgrp' function requires zero arguments. */
/* Define to 1 if getpwnam() is faked, ie BeOS R4.51. */
/* #undef GETPWNAM_FAKED */
/* The global file to source whenever zsh is run as a login shell; if
undefined, don't source anything */
/* The global file to source whenever zsh was run as a login shell. This is
sourced right before exiting. If undefined, don't source anything. */
/* The global file to source whenever zsh is run as a login shell, before
zshrc is read; if undefined, don't source anything. */
/* The global file to source absolutely first whenever zsh is run; if
undefined, don't source anything. */
/* The global file to source whenever zsh is run; if undefined, don't source
anything */
/* Define if TIOCGWINSZ is defined in sys/ioctl.h but not in termios.h. */
/* Define to 1 if you have 'alloca', as a function or macro. */
/* Define to 1 if <alloca.h> works. */
/* Define to 1 if you have the <bind/netdb.h> header file. */
/* #undef HAVE_BIND_NETDB_H */
/* Define if you have the termcap boolcodes symbol. */
/* Define if you have the terminfo boolnames symbol. */
/* Define to 1 if you have the `brk' function. */
/* Define to 1 if there is a prototype defined for brk() on your system. */
/* Define to 1 if you have the `canonicalize_file_name' function. */
/* Define to 1 if you have the `cap_get_proc' function. */
/* #undef HAVE_CAP_GET_PROC */
/* Define to 1 if you have the `clock_gettime' function. */
/* Define to 1 if you have the <curses.h> header file. */
/* Define to 1 if you have the `cygwin_conv_path' function. */
/* #undef HAVE_CYGWIN_CONV_PATH */
/* Define to 1 if you have the `difftime' function. */
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
/* Define to 1 if you have the `dlclose' function. */
/* Define to 1 if you have the `dlerror' function. */
/* Define to 1 if you have the <dlfcn.h> header file. */
/* Define to 1 if you have the `dlopen' function. */
/* Define to 1 if you have the `dlsym' function. */
/* Define to 1 if you have the <dl.h> header file. */
/* #undef HAVE_DL_H */
/* Define to 1 if you have the `endutxent' function. */
/* Define to 1 if you have the `erand48' function. */
/* Define to 1 if you have the <errno.h> header file. */
/* Define to 1 if you have the `faccessx' function. */
/* #undef HAVE_FACCESSX */
/* Define to 1 if you have the `fchdir' function. */
/* Define to 1 if you have the `fchmod' function. */
/* Define to 1 if you have the `fchown' function. */
/* Define to 1 if you have the <fcntl.h> header file. */
/* Define to 1 if system has working FIFOs. */
/* Define to 1 if you have the `fseeko' function. */
/* Define to 1 if you have the `fstat' function. */
/* Define to 1 if you have the `ftello' function. */
/* Define to 1 if you have the `ftruncate' function. */
/* Define to 1 if you have the <gdbm.h> header file. */
/* #undef HAVE_GDBM_H */
/* Define to 1 if you have the `gdbm_open' function. */
/* #undef HAVE_GDBM_OPEN */
/* Define to 1 if you have the `getcchar' function. */
/* Define to 1 if you have the `getcwd' function. */
/* Define to 1 if you have the `getenv' function. */
/* Define to 1 if you have the `getgrgid' function. */
/* Define to 1 if you have the `getgrnam' function. */
/* Define to 1 if you have the `gethostbyname2' function. */
/* Define to 1 if you have the `gethostname' function. */
/* Define to 1 if you have the `getipnodebyname' function. */
/* #undef HAVE_GETIPNODEBYNAME */
/* Define to 1 if you have the `getlogin' function. */
/* Define to 1 if you have the `getpagesize' function. */
/* Define to 1 if you have the `getpwent' function. */
/* Define to 1 if you have the `getpwnam' function. */
/* Define to 1 if you have the `getpwuid' function. */
/* Define to 1 if you have the `getrlimit' function. */
/* Define to 1 if you have the `getrusage' function. */
/* Define to 1 if you have the `gettimeofday' function. */
/* Define to 1 if you have the `getutent' function. */
/* Define to 1 if you have the `getutxent' function. */
/* Define to 1 if you have the `getxattr' function. */
/* Define to 1 if you have the `grantpt' function. */
/* Define to 1 if you have the <grp.h> header file. */
/* Define to 1 if you have the `htons' function. */
/* Define to 1 if you have the `iconv' function. */
/* Define to 1 if you have the <iconv.h> header file. */
/* Define to 1 if you have the `inet_aton' function. */
/* Define to 1 if you have the `inet_ntop' function. */
/* Define to 1 if you have the `inet_pton' function. */
/* Define to 1 if you have the `initgroups' function. */
/* Define to 1 if you have the `initscr' function. */
/* Define to 1 if you have the <inttypes.h> header file. */
/* Define to 1 if there is a prototype defined for ioctl() on your system. */
/* Define to 1 if you have the `isblank' function. */
/* Define to 1 if you have the `isinf' macro or function. */
/* Define to 1 if you have the `isnan' macro or function. */
/* Define to 1 if you have the `iswblank' function. */
/* Define to 1 if you have the `killpg' function. */
/* Define to 1 if you have the <langinfo.h> header file. */
/* Define to 1 if you have the `lchown' function. */
/* Define to 1 if you have the `cap' library (-lcap). */
/* #undef HAVE_LIBCAP */
/* Define to 1 if you have the <libc.h> header file. */
/* #undef HAVE_LIBC_H */
/* Define to 1 if you have the `dl' library (-ldl). */
/* Define to 1 if you have the `gdbm' library (-lgdbm). */
/* #undef HAVE_LIBGDBM */
/* Define to 1 if you have the `m' library (-lm). */
/* Define to 1 if you have the `rt' library (-lrt). */
/* Define to 1 if you have the `socket' library (-lsocket). */
/* #undef HAVE_LIBSOCKET */
/* Define to 1 if you have the <limits.h> header file. */
/* Define to 1 if system has working link(). */
/* Define to 1 if you have the `load' function. */
/* #undef HAVE_LOAD */
/* Define to 1 if you have the `loadbind' function. */
/* #undef HAVE_LOADBIND */
/* Define to 1 if you have the `loadquery' function. */
/* #undef HAVE_LOADQUERY */
/* Define to 1 if you have the <locale.h> header file. */
/* Define to 1 if you have the `log2' function. */
/* Define to 1 if you have the `lstat' function. */
/* Define to 1 if you have the `memcpy' function. */
/* Define to 1 if you have the `memmove' function. */
/* Define to 1 if you have the <memory.h> header file. */
/* Define to 1 if you have the `mkfifo' function. */
/* Define to 1 if there is a prototype defined for mknod() on your system. */
/* Define to 1 if you have the `mkstemp' function. */
/* Define to 1 if you have the `mktime' function. */
/* Define to 1 if you have a working `mmap' system call. */
/* Define to 1 if you have the `msync' function. */
/* Define to 1 if you have the `munmap' function. */
/* Define to 1 if you have the `nanosleep' function. */
/* Define to 1 if you have the <ncursesw/ncurses.h> header file. */
/* #undef HAVE_NCURSESW_NCURSES_H */
/* Define to 1 if you have the <ncursesw/term.h> header file. */
/* #undef HAVE_NCURSESW_TERM_H */
/* Define to 1 if you have the <ncurses.h> header file. */
/* Define to 1 if you have the <ncurses/ncurses.h> header file. */
/* #undef HAVE_NCURSES_NCURSES_H */
/* Define to 1 if you have the <ncurses/term.h> header file. */
/* #undef HAVE_NCURSES_TERM_H */
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
/* #undef HAVE_NDIR_H */
/* Define to 1 if you have the <netinet/in_systm.h> header file. */
/* Define to 1 if you have the `nice' function. */
/* Define to 1 if you have the `nis_list' function. */
/* #undef HAVE_NIS_LIST */
/* Define to 1 if you have the `nl_langinfo' function. */
/* Define to 1 if you have the `ntohs' function. */
/* Define if you have the termcap numcodes symbol. */
/* Define if you have the terminfo numnames symbol. */
/* Define to 1 if you have the `open_memstream' function. */
/* Define to 1 if your termcap library has the ospeed variable */
/* Define to 1 if you have the `pathconf' function. */
/* Define to 1 if you have the `pcre_compile' function. */
/* #undef HAVE_PCRE_COMPILE */
/* Define to 1 if you have the `pcre_exec' function. */
/* #undef HAVE_PCRE_EXEC */
/* Define to 1 if you have the <pcre.h> header file. */
/* Define to 1 if you have the `pcre_study' function. */
/* #undef HAVE_PCRE_STUDY */
/* Define to 1 if you have the `poll' function. */
/* Define to 1 if you have the <poll.h> header file. */
/* Define to 1 if you have the `posix_openpt' function. */
/* Define to 1 if the system supports `prctl' to change process name */
/* Define to 1 if you have the `ptsname' function. */
/* Define to 1 if you have the `putenv' function. */
/* Define to 1 if you have the <pwd.h> header file. */
/* Define to 1 if you have the `readlink' function. */
/* Define to 1 if you have the `realpath' function. */
/* Define to 1 if you have the `regcomp' function. */
/* Define to 1 if you have the `regerror' function. */
/* Define to 1 if you have the `regexec' function. */
/* Define to 1 if you have the `regfree' function. */
/* Define to 1 if you have the `resize_term' function. */
/* Define to 1 if RLIMIT_AIO_MEM is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_AIO_MEM */
/* Define to 1 if RLIMIT_AIO_OPS is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_AIO_OPS */
/* Define to 1 if RLIMIT_AS is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_KQUEUES is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_KQUEUES */
/* Define to 1 if RLIMIT_LOCKS is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_MEMLOCK is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_MSGQUEUE is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_NICE is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_NOFILE is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_NPROC is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_NPTS is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_NPTS */
/* Define to 1 if RLIMIT_NTHR is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_NTHR */
/* Define to 1 if RLIMIT_POSIXLOCKS is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_POSIXLOCKS */
/* Define to 1 if RLIMIT_PTHREAD is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_PTHREAD */
/* Define to 1 if RLIMIT_RSS is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_RTPRIO is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_RTTIME is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_SBSIZE is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_SBSIZE */
/* Define to 1 if RLIMIT_SIGPENDING is present (whether or not as a macro). */
/* Define to 1 if RLIMIT_SWAP is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_SWAP */
/* Define to 1 if RLIMIT_TCACHE is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_TCACHE */
/* Define to 1 if RLIMIT_UMTXP is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_UMTXP */
/* Define to 1 if RLIMIT_VMEM is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_VMEM */
/* Define to 1 if you have the `sbrk' function. */
/* Define to 1 if there is a prototype defined for sbrk() on your system. */
/* Define to 1 if you have the `scalbn' function. */
/* Define to 1 if you have the `select' function. */
/* Define to 1 if you have the `setcchar' function. */
/* Define to 1 if you have the `setegid' function. */
/* Define to 1 if you have the `setenv' function. */
/* Define to 1 if you have the `seteuid' function. */
/* Define to 1 if you have the `setgid' function. */
/* Define to 1 if you have the `setlocale' function. */
/* Define to 1 if you have the `setpgid' function. */
/* Define to 1 if you have the `setpgrp' function. */
/* Define to 1 if the system supports `setproctitle' to change process name */
/* #undef HAVE_SETPROCTITLE */
/* Define to 1 if you have the `setregid' function. */
/* Define to 1 if you have the `setresgid' function. */
/* Define to 1 if you have the `setresuid' function. */
/* Define to 1 if you have the `setreuid' function. */
/* Define to 1 if you have the `setsid' function. */
/* Define to 1 if you have the `setuid' function. */
/* Define to 1 if you have the `setupterm' function. */
/* Define to 1 if you have the `setutxent' function. */
/* Define to 1 if you have the `shl_findsym' function. */
/* #undef HAVE_SHL_FINDSYM */
/* Define to 1 if you have the `shl_load' function. */
/* #undef HAVE_SHL_LOAD */
/* Define to 1 if you have the `shl_unload' function. */
/* #undef HAVE_SHL_UNLOAD */
/* Define to 1 if you have the `sigaction' function. */
/* Define to 1 if you have the `sigblock' function. */
/* Define to 1 if you have the `sighold' function. */
/* Define to 1 if you have the `signgam' function. */
/* Define to 1 if you have the `sigprocmask' function. */
/* Define to 1 if you have the `sigrelse' function. */
/* Define to 1 if you have the `sigsetmask' function. */
/* Define to 1 if you have the `srand_deterministic' function. */
/* #undef HAVE_SRAND_DETERMINISTIC */
/* Define to 1 if you have the <stdarg.h> header file. */
/* Define to 1 if you have the <stddef.h> header file. */
/* Define to 1 if you have the <stdint.h> header file. */
/* Define to 1 if you have the <stdio.h> header file. */
/* Define to 1 if you have the <stdlib.h> header file. */
/* Define if you have the termcap strcodes symbol. */
/* Define to 1 if you have the `strcoll' function and it is properly defined.
*/
/* Define to 1 if you have the `strerror' function. */
/* Define to 1 if you have the `strftime' function. */
/* Define to 1 if you have the <strings.h> header file. */
/* Define to 1 if you have the <string.h> header file. */
/* Define if you have the terminfo strnames symbol. */
/* Define to 1 if you have the `strptime' function. */
/* Define to 1 if you have the `strstr' function. */
/* Define to 1 if you have the `strtoul' function. */
/* Define if your system's struct direct has a member named d_ino. */
/* #undef HAVE_STRUCT_DIRECT_D_INO */
/* Define if your system's struct direct has a member named d_stat. */
/* #undef HAVE_STRUCT_DIRECT_D_STAT */
/* Define if your system's struct dirent has a member named d_ino. */
/* Define if your system's struct dirent has a member named d_stat. */
/* #undef HAVE_STRUCT_DIRENT_D_STAT */
/* Define to 1 if `ru_idrss' is a member of `struct rusage'. */
/* Define to 1 if `ru_inblock' is a member of `struct rusage'. */
/* Define to 1 if `ru_isrss' is a member of `struct rusage'. */
/* Define to 1 if `ru_ixrss' is a member of `struct rusage'. */
/* Define to 1 if `ru_majflt' is a member of `struct rusage'. */
/* Define to 1 if `ru_maxrss' is a member of `struct rusage'. */
/* Define to 1 if `ru_minflt' is a member of `struct rusage'. */
/* Define to 1 if `ru_msgrcv' is a member of `struct rusage'. */
/* Define to 1 if `ru_msgsnd' is a member of `struct rusage'. */
/* Define to 1 if `ru_nivcsw' is a member of `struct rusage'. */
/* Define to 1 if `ru_nsignals' is a member of `struct rusage'. */
/* Define to 1 if `ru_nswap' is a member of `struct rusage'. */
/* Define to 1 if `ru_nvcsw' is a member of `struct rusage'. */
/* Define to 1 if `ru_oublock' is a member of `struct rusage'. */
/* Define if your system's struct sockaddr_in6 has a member named
sin6_scope_id. */
/* Define to 1 if `st_atimensec' is a member of `struct stat'. */
/* #undef HAVE_STRUCT_STAT_ST_ATIMENSEC */
/* Define to 1 if `st_atimespec.tv_nsec' is a member of `struct stat'. */
/* #undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC */
/* Define to 1 if `st_atim.tv_nsec' is a member of `struct stat'. */
/* Define to 1 if `st_ctimensec' is a member of `struct stat'. */
/* #undef HAVE_STRUCT_STAT_ST_CTIMENSEC */
/* Define to 1 if `st_ctimespec.tv_nsec' is a member of `struct stat'. */
/* #undef HAVE_STRUCT_STAT_ST_CTIMESPEC_TV_NSEC */
/* Define to 1 if `st_ctim.tv_nsec' is a member of `struct stat'. */
/* Define to 1 if `st_mtimensec' is a member of `struct stat'. */
/* #undef HAVE_STRUCT_STAT_ST_MTIMENSEC */
/* Define to 1 if `st_mtimespec.tv_nsec' is a member of `struct stat'. */
/* #undef HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC */
/* Define to 1 if `st_mtim.tv_nsec' is a member of `struct stat'. */
/* Define to 1 if struct timespec is defined by a system header */
/* Define to 1 if struct timezone is defined by a system header */
/* Define to 1 if struct utmp is defined by a system header */
/* Define to 1 if struct utmpx is defined by a system header */
/* Define if your system's struct utmpx has a member named ut_host. */
/* Define if your system's struct utmpx has a member named ut_tv. */
/* Define if your system's struct utmpx has a member named ut_xtime. */
/* #undef HAVE_STRUCT_UTMPX_UT_XTIME */
/* Define if your system's struct utmp has a member named ut_host. */
/* Define to 1 if you have RFS superroot directory. */
/* #undef HAVE_SUPERROOT */
/* Define to 1 if you have the `symlink' function. */
/* Define to 1 if you have the `sysconf' function. */
/* Define to 1 if you have the <sys/capability.h> header file. */
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_DIR_H */
/* Define to 1 if you have the <sys/filio.h> header file. */
/* #undef HAVE_SYS_FILIO_H */
/* Define to 1 if you have the <sys/mman.h> header file. */
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_NDIR_H */
/* Define to 1 if you have the <sys/param.h> header file. */
/* Define to 1 if you have the <sys/resource.h> header file. */
/* Define to 1 if you have the <sys/select.h> header file. */
/* Define to 1 if you have the <sys/stat.h> header file. */
/* Define to 1 if you have the <sys/stropts.h> header file. */
/* #undef HAVE_SYS_STROPTS_H */
/* Define to 1 if you have the <sys/times.h> header file. */
/* Define to 1 if you have the <sys/time.h> header file. */
/* Define to 1 if you have the <sys/types.h> header file. */
/* Define to 1 if you have the <sys/utsname.h> header file. */
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
/* Define to 1 if you have the <sys/xattr.h> header file. */
/* Define to 1 if you have the `tcgetattr' function. */
/* Define to 1 if you have the `tcsetpgrp' function. */
/* Define to 1 if you have the <termcap.h> header file. */
/* Define to 1 if you have the <termios.h> header file. */
/* Define to 1 if you have the <termio.h> header file. */
// #define HAVE_TERMIO_H 1
/* Define to 1 if you have the <term.h> header file. */
/* Define to 1 if you have the `tgamma' function. */
/* Define to 1 if you have the `tgetent' function. */
/* Define to 1 if you have the `tigetflag' function. */
/* Define to 1 if you have the `tigetnum' function. */
/* Define to 1 if you have the `tigetstr' function. */
/* Define to 1 if you have the `timelocal' function. */
/* Define to 1 if you have the `uname' function. */
/* Define to 1 if the compiler can initialise a union. */
/* Define to 1 if you have the <unistd.h> header file. */
/* Define to 1 if you have the `unload' function. */
/* #undef HAVE_UNLOAD */
/* Define to 1 if you have the `unlockpt' function. */
/* Define to 1 if you have the `unsetenv' function. */
/* Define to 1 if you have the `use_default_colors' function. */
/* Define to 1 if you have the <utmpx.h> header file. */
/* Define to 1 if you have the <utmp.h> header file. */
/* Define to 1 if you have the <varargs.h> header file. */
/* #undef HAVE_VARARGS_H */
/* Define to 1 if compiler supports variable-length arrays */
/* Define to 1 if you have the `waddwstr' function. */
/* Define to 1 if you have the `wait3' function. */
/* Define to 1 if you have the `waitpid' function. */
/* Define to 1 if you have the <wchar.h> header file. */
/* Define to 1 if you have the `wctomb' function. */
/* Define to 1 if you have the `wget_wch' function. */
/* Define to 1 if you have the `win_wch' function. */
/* Define to 1 if you have the `xw' function. */
/* #undef HAVE_XW */
/* Define to 1 if you have the `_mktemp' function. */
/* #undef HAVE__MKTEMP */
/* Define to 1 if you want to use dynamically loaded modules on HPUX 10. */
/* #undef HPUX10DYNAMIC */
/* Define as const if the declaration of iconv() needs const. */
/* Define to 1 if iconv() is linked from libiconv */
/* #undef ICONV_FROM_LIBICONV */
/* Define to 1 if ino_t is 64 bit (for large file support). */
/* #undef INO_T_IS_64_BIT */
/* Define to 1 if we must include <sys/ioctl.h> to get a prototype for
ioctl(). */
/* Define to 1 if musl is being used as the C library */
/* #undef LIBC_MUSL */
/* Definitions used when a long is less than eight byte, to try to provide
some support for eight byte operations. Note that ZSH_64_BIT_TYPE,
OFF_T_IS_64_BIT, INO_T_IS_64_BIT do *not* get defined if long is already 64
bits, since in that case no special handling is required. Define to 1 if
long is 64 bits */
/* Define to be the machine type (microprocessor class or machine model). */
/* Define for Maildir support */
/* #undef MAILDIR_SUPPORT */
/* Define for function depth limits */
/* Define to 1 if you want support for multibyte character sets. */
/* Define to 1 if you have ospeed, but it is not defined in termcap.h */
/* #undef MUST_DEFINE_OSPEED */
/* Define to 1 if you have no signal blocking at all (bummer). */
/* #undef NO_SIGNAL_BLOCKING */
/* Define to 1 if off_t is 64 bit (for large file support) */
/* #undef OFF_T_IS_64_BIT */
/* Define to be the name of the operating system. */
/* Define to the address where bug reports for this package should be sent. */
/* Define to the full name of this package. */
/* Define to the full name and version of this package. */
/* Define to the one symbol short name of this package. */
/* Define to the home page for this package. */
/* Define to the version of this package. */
/* Define to the path of the /dev/fd filesystem. */
/* Define to be location of utmpx file. */
/* #undef PATH_UTMPX_FILE */
/* Define to be location of utmp file. */
/* Define to be location of wtmpx file. */
/* #undef PATH_WTMPX_FILE */
/* Define to be location of wtmp file. */
/* Define to 1 if you use POSIX style signal handling. */
/* Define to 1 if printf and sprintf support %lld for long long. */
/* Define to 1 if ANSI function prototypes are usable. */
/* Define if realpath() accepts NULL as its second argument. */
/* Undefine this if you don't want to get a restricted shell when zsh is
exec'd with basename that starts with r. By default this is defined. */
/* Define to 1 if RLIMIT_RSS and RLIMIT_AS both exist and are equal. */
/* #undef RLIMIT_RSS_IS_AS */
/* Define to 1 if RLIMIT_VMEM and RLIMIT_AS both exist and are equal. */
/* #undef RLIMIT_VMEM_IS_AS */
/* Define to 1 if RLIMIT_VMEM and RLIMIT_RSS both exist and are equal. */
/* #undef RLIMIT_VMEM_IS_RSS */
/* Define to 1 if struct rlimit uses long long */
/* #undef RLIM_T_IS_LONG_LONG */
/* Define to 1 if struct rlimit uses quad_t. */
/* #undef RLIM_T_IS_QUAD_T */
/* Define to 1 if struct rlimit uses unsigned. */
/* Define to 1 if select() is defined in <sys/socket.h>, ie BeOS R4.51 */
/* #undef SELECT_IN_SYS_SOCKET_H */
/* Define to 1 if setenv removes a leading = */
/* #undef SETENV_MANGLES_EQUAL */
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at runtime.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
/* #undef STACK_DIRECTION */
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */
/* Define to 1 if all of the C90 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 to 1 if you use SYS style signal handling (and can block signals).
*/
/* #undef SYSV_SIGNALS */
/* Define to 1 if tgetent() accepts NULL as a buffer. */
/* Define to what tgetent() returns on success (0 on HP-UX X/Open curses). */
/* Define if there is no prototype for the tgoto() terminal function. */
/* #undef TGOTO_PROTO_MISSING */
/* Define if sys/time.h and sys/select.h cannot be both included. */
/* #undef TIME_H_SELECT_H_CONFLICTS */
/* Define to 1 if all the kit for using /dev/ptmx for ptys is available. */
/* Define to 1 if you need to use the native getcwd. */
/* Define to 1 if h_errno is not defined by the system. */
/* Define to 1 if lseek() can be used for SHIN. */
/* Define to 1 if you want to allocate stack memory e.g. with `alloca'. */
/* #undef USE_STACK_ALLOCATION */
/* Define to be a string corresponding the vendor of the machine. */
/* Define if your should include sys/stream.h and sys/ptem.h. */
/* #undef WINSIZE_IN_PTEM */
/* Define if getxattr() etc. require additional MacOS-style arguments */
/* #undef XATTR_EXTRA_ARGS */
/* Define to 1 if the zlong type uses 64-bit long int. */
/* #undef ZLONG_IS_LONG_64 */
/* Define to 1 if the zlong type uses long long int. */
/* #undef ZLONG_IS_LONG_LONG */
/* Define to a 64 bit integer type if there is one, but long is shorter. */
/* #undef ZSH_64_BIT_TYPE */
/* Define to an unsigned variant of ZSH_64_BIT_TYPE if that is defined. */
/* #undef ZSH_64_BIT_UTYPE */
/* Define to 1 if you want to get debugging information on internal hash
tables. This turns on the `hashinfo' builtin. */
/* #undef ZSH_HASH_DEBUG */
/* Define to 1 if some variant of a curses header can be included */
/* Define to 1 if some variant of term.h can be included */
/* Define to 1 if you want to turn on error checking for heap allocation. */
/* #undef ZSH_HEAP_DEBUG */
/* Define to 1 if you want to use zsh's own memory allocation routines */
/* #undef ZSH_MEM */
/* Define to 1 if you want to debug zsh memory allocation routines. */
/* #undef ZSH_MEM_DEBUG */
/* Define to 1 if you want to turn on warnings of memory allocation errors */
/* #undef ZSH_MEM_WARNING */
/* Define if _XOPEN_SOURCE_EXTENDED should not be defined to avoid clashes */
/* #undef ZSH_NO_XOPEN */
/* Define to 1 if you want to turn on memory checking for free(). */
/* #undef ZSH_SECURE_FREE */
/* Define to 1 if you want to add code for valgrind to debug heap memory. */
/* #undef ZSH_VALGRIND */
/* Define to the base type of the third argument of accept */
/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS */
/* Define for large files, on AIX-style hosts. */
/* #undef _LARGE_FILES */
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef gid_t */
/* Define to `unsigned long' if <sys/types.h> doesn't define. */
/* #undef ino_t */
/* Define to `int' if <sys/types.h> does not define. */
/* #undef mode_t */
/* Define to `long int' if <sys/types.h> does not define. */
/* #undef off_t */
/* Define as a signed integer type capable of holding a process identifier. */
/* #undef pid_t */
/* Define to the type used in struct rlimit. */
/* #undef rlim_t */
/* Define to `unsigned int' if <sys/types.h> or <signal.h> doesn't define */
/* #undef sigset_t */
/* Define to `unsigned int' if <sys/types.h> does not define. */
/* #undef size_t */
/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef uid_t */