Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

  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
/* nbtool_config.h.in.  Generated from configure.ac by autoheader.  */

/*      $NetBSD: nbtool_config.h.in,v 1.52 2019/06/22 13:42:53 hannken Exp $    */
 
#ifndef __NETBSD_NBTOOL_CONFIG_H__
#define __NETBSD_NBTOOL_CONFIG_H__

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

/* Define to 1 if your `fparseln' function is broken. */
#undef BROKEN_FPARSELN

/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
   systems. This function is required for `alloca.c' support on those systems.
   */
#undef CRAY_STACKSEG_END

/* Define to 1 if using `alloca.c'. */
#undef C_ALLOCA

/* Define to 1 if you have `alloca', as a function or macro. */
#undef HAVE_ALLOCA

/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
   */
#undef HAVE_ALLOCA_H

/* Define to 1 if you have the <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H

/* Define to 1 if you have the `asnprintf' function. */
#undef HAVE_ASNPRINTF

/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF

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

/* Define to 1 if you have the `atoll' function. */
#undef HAVE_ATOLL

/* Define to 1 if you have the `basename' function. */
#undef HAVE_BASENAME

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

/* Define to 1 if you have the declaration of `asnprintf', and to 0 if you
   don't. */
#undef HAVE_DECL_ASNPRINTF

/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
   don't. */
#undef HAVE_DECL_ASPRINTF

/* Define to 1 if you have the declaration of `atoll', and to 0 if you don't.
   */
#undef HAVE_DECL_ATOLL

/* Define to 1 if you have the declaration of `basename', and to 0 if you
   don't. */
#undef HAVE_DECL_BASENAME

/* Define to 1 if you have the declaration of `be16dec', and to 0 if you
   don't. */
#undef HAVE_DECL_BE16DEC

/* Define to 1 if you have the declaration of `be16enc', and to 0 if you
   don't. */
#undef HAVE_DECL_BE16ENC

/* Define to 1 if you have the declaration of `be16toh', and to 0 if you
   don't. */
#undef HAVE_DECL_BE16TOH

/* Define to 1 if you have the declaration of `be32dec', and to 0 if you
   don't. */
#undef HAVE_DECL_BE32DEC

/* Define to 1 if you have the declaration of `be32enc', and to 0 if you
   don't. */
#undef HAVE_DECL_BE32ENC

/* Define to 1 if you have the declaration of `be32toh', and to 0 if you
   don't. */
#undef HAVE_DECL_BE32TOH

/* Define to 1 if you have the declaration of `be64dec', and to 0 if you
   don't. */
#undef HAVE_DECL_BE64DEC

/* Define to 1 if you have the declaration of `be64enc', and to 0 if you
   don't. */
#undef HAVE_DECL_BE64ENC

/* Define to 1 if you have the declaration of `be64toh', and to 0 if you
   don't. */
#undef HAVE_DECL_BE64TOH

/* Define to 1 if you have the declaration of `bswap16', and to 0 if you
   don't. */
#undef HAVE_DECL_BSWAP16

/* Define to 1 if you have the declaration of `bswap32', and to 0 if you
   don't. */
#undef HAVE_DECL_BSWAP32

/* Define to 1 if you have the declaration of `bswap64', and to 0 if you
   don't. */
#undef HAVE_DECL_BSWAP64

/* Define to 1 if you have the declaration of `dirname', and to 0 if you
   don't. */
#undef HAVE_DECL_DIRNAME

/* Define to 1 if you have the declaration of `err', and to 0 if you don't. */
#undef HAVE_DECL_ERR

/* Define to 1 if you have the declaration of `errc', and to 0 if you don't.
   */
#undef HAVE_DECL_ERRC

/* Define to 1 if you have the declaration of `errx', and to 0 if you don't.
   */
#undef HAVE_DECL_ERRX

/* Define to 1 if you have the declaration of `fgetln', and to 0 if you don't.
   */
#undef HAVE_DECL_FGETLN

/* Define to 1 if you have the declaration of `fparseln', and to 0 if you
   don't. */
#undef HAVE_DECL_FPARSELN

/* Define to 1 if you have the declaration of `fpurge', and to 0 if you don't.
   */
#undef HAVE_DECL_FPURGE

/* Define to 1 if you have the declaration of `fstatvfs', and to 0 if you
   don't. */
#undef HAVE_DECL_FSTATVFS

/* Define to 1 if you have the declaration of `getdelim', and to 0 if you
   don't. */
#undef HAVE_DECL_GETDELIM

/* Define to 1 if you have the declaration of `getline', and to 0 if you
   don't. */
#undef HAVE_DECL_GETLINE

/* Define to 1 if you have the declaration of `getprogname', and to 0 if you
   don't. */
#undef HAVE_DECL_GETPROGNAME

/* Define to 1 if you have the declaration of `getsubopt', and to 0 if you
   don't. */
#undef HAVE_DECL_GETSUBOPT

/* Define to 1 if you have the declaration of `gid_from_group', and to 0 if
   you don't. */
#undef HAVE_DECL_GID_FROM_GROUP

/* Define to 1 if you have the declaration of `group_from_gid', and to 0 if
   you don't. */
#undef HAVE_DECL_GROUP_FROM_GID

/* Define to 1 if you have the declaration of `heapsort', and to 0 if you
   don't. */
#undef HAVE_DECL_HEAPSORT

/* Define to 1 if you have the declaration of `htobe16', and to 0 if you
   don't. */
#undef HAVE_DECL_HTOBE16

/* Define to 1 if you have the declaration of `htobe32', and to 0 if you
   don't. */
#undef HAVE_DECL_HTOBE32

/* Define to 1 if you have the declaration of `htobe64', and to 0 if you
   don't. */
#undef HAVE_DECL_HTOBE64

/* Define to 1 if you have the declaration of `htole16', and to 0 if you
   don't. */
#undef HAVE_DECL_HTOLE16

/* Define to 1 if you have the declaration of `htole32', and to 0 if you
   don't. */
#undef HAVE_DECL_HTOLE32

/* Define to 1 if you have the declaration of `htole64', and to 0 if you
   don't. */
#undef HAVE_DECL_HTOLE64

/* Define to 1 if you have the declaration of `isblank', and to 0 if you
   don't. */
#undef HAVE_DECL_ISBLANK

/* Define to 1 if you have the declaration of `issetugid', and to 0 if you
   don't. */
#undef HAVE_DECL_ISSETUGID

/* Define to 1 if you have the declaration of `lchflags', and to 0 if you
   don't. */
#undef HAVE_DECL_LCHFLAGS

/* Define to 1 if you have the declaration of `lchmod', and to 0 if you don't.
   */
#undef HAVE_DECL_LCHMOD

/* Define to 1 if you have the declaration of `lchown', and to 0 if you don't.
   */
#undef HAVE_DECL_LCHOWN

/* Define to 1 if you have the declaration of `le16dec', and to 0 if you
   don't. */
#undef HAVE_DECL_LE16DEC

/* Define to 1 if you have the declaration of `le16enc', and to 0 if you
   don't. */
#undef HAVE_DECL_LE16ENC

/* Define to 1 if you have the declaration of `le16toh', and to 0 if you
   don't. */
#undef HAVE_DECL_LE16TOH

/* Define to 1 if you have the declaration of `le32dec', and to 0 if you
   don't. */
#undef HAVE_DECL_LE32DEC

/* Define to 1 if you have the declaration of `le32enc', and to 0 if you
   don't. */
#undef HAVE_DECL_LE32ENC

/* Define to 1 if you have the declaration of `le32toh', and to 0 if you
   don't. */
#undef HAVE_DECL_LE32TOH

/* Define to 1 if you have the declaration of `le64dec', and to 0 if you
   don't. */
#undef HAVE_DECL_LE64DEC

/* Define to 1 if you have the declaration of `le64enc', and to 0 if you
   don't. */
#undef HAVE_DECL_LE64ENC

/* Define to 1 if you have the declaration of `le64toh', and to 0 if you
   don't. */
#undef HAVE_DECL_LE64TOH

/* Define to 1 if you have the declaration of `mi_vector_hash', and to 0 if
   you don't. */
#undef HAVE_DECL_MI_VECTOR_HASH

/* Define to 1 if you have the declaration of `mkdtemp', and to 0 if you
   don't. */
#undef HAVE_DECL_MKDTEMP

/* Define to 1 if you have the declaration of `mkstemp', and to 0 if you
   don't. */
#undef HAVE_DECL_MKSTEMP

/* Define to 1 if you have the declaration of `optind', and to 0 if you don't.
   */
#undef HAVE_DECL_OPTIND

/* Define to 1 if you have the declaration of `optreset', and to 0 if you
   don't. */
#undef HAVE_DECL_OPTRESET

/* Define to 1 if you have the declaration of `pread', and to 0 if you don't.
   */
#undef HAVE_DECL_PREAD

/* Define to 1 if you have the declaration of `pwcache_groupdb', and to 0 if
   you don't. */
#undef HAVE_DECL_PWCACHE_GROUPDB

/* Define to 1 if you have the declaration of `pwcache_userdb', and to 0 if
   you don't. */
#undef HAVE_DECL_PWCACHE_USERDB

/* Define to 1 if you have the declaration of `pwrite', and to 0 if you don't.
   */
#undef HAVE_DECL_PWRITE

/* Define to 1 if you have the declaration of `raise_default_signal', and to 0
   if you don't. */
#undef HAVE_DECL_RAISE_DEFAULT_SIGNAL

/* Define to 1 if you have the declaration of `reallocarr', and to 0 if you
   don't. */
#undef HAVE_DECL_REALLOCARR

/* Define to 1 if you have the declaration of `setenv', and to 0 if you don't.
   */
#undef HAVE_DECL_SETENV

/* Define to 1 if you have the declaration of `setgroupent', and to 0 if you
   don't. */
#undef HAVE_DECL_SETGROUPENT

/* Define to 1 if you have the declaration of `setpassent', and to 0 if you
   don't. */
#undef HAVE_DECL_SETPASSENT

/* Define to 1 if you have the declaration of `setprogname', and to 0 if you
   don't. */
#undef HAVE_DECL_SETPROGNAME

/* Define to 1 if you have the declaration of `snprintf', and to 0 if you
   don't. */
#undef HAVE_DECL_SNPRINTF

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

/* Define to 1 if you have the declaration of `strlcat', and to 0 if you
   don't. */
#undef HAVE_DECL_STRLCAT

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

/* Define to 1 if you have the declaration of `strmode', and to 0 if you
   don't. */
#undef HAVE_DECL_STRMODE

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

/* Define to 1 if you have the declaration of `strndup', and to 0 if you
   don't. */
#undef HAVE_DECL_STRNDUP

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

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

/* Define to 1 if you have the declaration of `strsuftoll', and to 0 if you
   don't. */
#undef HAVE_DECL_STRSUFTOLL

/* Define to 1 if you have the declaration of `strtoi', and to 0 if you don't.
   */
#undef HAVE_DECL_STRTOI

/* Define to 1 if you have the declaration of `strtoll', and to 0 if you
   don't. */
#undef HAVE_DECL_STRTOLL

/* Define to 1 if you have the declaration of `strtou', and to 0 if you don't.
   */
#undef HAVE_DECL_STRTOU

/* Define to 1 if you have the declaration of `sys_signame', and to 0 if you
   don't. */
#undef HAVE_DECL_SYS_SIGNAME

/* Define to 1 if you have the declaration of `uid_from_user', and to 0 if you
   don't. */
#undef HAVE_DECL_UID_FROM_USER

/* Define to 1 if you have the declaration of `user_from_uid', and to 0 if you
   don't. */
#undef HAVE_DECL_USER_FROM_UID

/* Define to 1 if you have the declaration of `vasnprintf', and to 0 if you
   don't. */
#undef HAVE_DECL_VASNPRINTF

/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
   don't. */
#undef HAVE_DECL_VASPRINTF

/* Define to 1 if you have the declaration of `verrc', and to 0 if you don't.
   */
#undef HAVE_DECL_VERRC

/* Define to 1 if you have the declaration of `verrx', and to 0 if you don't.
   */
#undef HAVE_DECL_VERRX

/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
   don't. */
#undef HAVE_DECL_VSNPRINTF

/* Define to 1 if you have the declaration of `vwarnc', and to 0 if you don't.
   */
#undef HAVE_DECL_VWARNC

/* Define to 1 if you have the declaration of `vwarnx', and to 0 if you don't.
   */
#undef HAVE_DECL_VWARNX

/* Define to 1 if you have the declaration of `warn', and to 0 if you don't.
   */
#undef HAVE_DECL_WARN

/* Define to 1 if you have the declaration of `warnc', and to 0 if you don't.
   */
#undef HAVE_DECL_WARNC

/* Define to 1 if you have the declaration of `warnx', and to 0 if you don't.
   */
#undef HAVE_DECL_WARNX

/* Define to 1 if you have the `devname' function. */
#undef HAVE_DEVNAME

/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
   */
#undef HAVE_DIRENT_H

/* Define to 1 if you have the `dirfd' function. */
#undef HAVE_DIRFD

/* Define to 1 if you have the `dirname' function. */
#undef HAVE_DIRNAME

/* Define to 1 if `dd_fd' is a member of `DIR'. */
#undef HAVE_DIR_DD_FD

/* Define to 1 if `__dd_fd' is a member of `DIR'. */
#undef HAVE_DIR___DD_FD

/* Define to 1 if you have the `dprintf' function. */
#undef HAVE_DPRINTF

/* Define if you have the enum uio_rw type. */
#undef HAVE_ENUM_UIO_RW

/* Define if you have the enum uio_seg type. */
#undef HAVE_ENUM_UIO_SEG

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

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

/* Define to 1 if you have the `esetfunc' function. */
#undef HAVE_ESETFUNC

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

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

/* Define to 1 if you have the `fgetln' function. */
#undef HAVE_FGETLN

/* Define to 1 if you have the `flock' function. */
#undef HAVE_FLOCK

/* Define to 1 if you have the `fparseln' function. */
#undef HAVE_FPARSELN

/* Define to 1 if you have the `fpurge' function. */
#undef HAVE_FPURGE

/* Define to 1 if you have the `futimes' function. */
#undef HAVE_FUTIMES

/* Define to 1 if you have the `getline' function. */
#undef HAVE_GETLINE

/* Define to 1 if you have the `getopt' function. */
#undef HAVE_GETOPT

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

/* Define to 1 if you have the `getopt_long' function. */
#undef HAVE_GETOPT_LONG

/* Define to 1 if you have the `gid_from_group' function. */
#undef HAVE_GID_FROM_GROUP

/* Define to 1 if you have the `group_from_gid' function. */
#undef HAVE_GROUP_FROM_GID

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

/* Define to 1 if you have the `heapsort' function. */
#undef HAVE_HEAPSORT

/* Define to 1 if the system has the type `id_t'. */
#undef HAVE_ID_T

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

/* Define to 1 if you have the `isblank' function. */
#undef HAVE_ISBLANK

/* Define to 1 if you have the `issetugid' function. */
#undef HAVE_ISSETUGID

/* Define to 1 if you have the `lchflags' function. */
#undef HAVE_LCHFLAGS

/* Define to 1 if you have the `lchmod' function. */
#undef HAVE_LCHMOD

/* Define to 1 if you have the `lchown' function. */
#undef HAVE_LCHOWN

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

/* Define to 1 if you have the `regex' library (-lregex). */
#undef HAVE_LIBREGEX

/* Define to 1 if you have the `rt' library (-lrt). */
#undef HAVE_LIBRT

/* Define to 1 if you have the `z' library (-lz). */
#undef HAVE_LIBZ

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

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

/* Define to 1 if the system has the type `long long'. */
#undef HAVE_LONG_LONG

/* Define to 1 if you have the `lutimes' function. */
#undef HAVE_LUTIMES

/* Define to 1 if you have the <machine/bswap.h> header file. */
#undef HAVE_MACHINE_BSWAP_H

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

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

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

/* Define to 1 if you have the `mkdtemp' function. */
#undef HAVE_MKDTEMP

/* Define to 1 if you have the `mkstemp' function. */
#undef HAVE_MKSTEMP

/* 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 <netconfig.h> header file. */
#undef HAVE_NETCONFIG_H

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

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

/* Define to 1 if you have the `poll' function. */
#undef HAVE_POLL

/* Define to 1 if you have the `pread' function. */
#undef HAVE_PREAD

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

/* Define to 1 if you have the `putc_unlocked' function. */
#undef HAVE_PUTC_UNLOCKED

/* Define to 1 if you have the `pwcache_groupdb' function. */
#undef HAVE_PWCACHE_GROUPDB

/* Define to 1 if you have the `pwcache_userdb' function. */
#undef HAVE_PWCACHE_USERDB

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

/* Define to 1 if you have the `pwrite' function. */
#undef HAVE_PWRITE

/* Define to 1 if you have the `raise_default_signal' function. */
#undef HAVE_RAISE_DEFAULT_SIGNAL

/* Define to 1 if you have the `random' function. */
#undef HAVE_RANDOM

/* Define to 1 if you have the `reallocarr' function. */
#undef HAVE_REALLOCARR

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

/* Define to 1 if you have the <rpc/types.h> header file. */
#undef HAVE_RPC_TYPES_H

/* Define to 1 if you have the `setenv' function. */
#undef HAVE_SETENV

/* Define to 1 if you have the `setgroupent' function. */
#undef HAVE_SETGROUPENT

/* Define to 1 if you have the `setpassent' function. */
#undef HAVE_SETPASSENT

/* Define to 1 if you have the `setprogname' function. */
#undef HAVE_SETPROGNAME

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

/* Define to 1 if you have the `snprintb_m' function. */
#undef HAVE_SNPRINTB_M

/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF

/* Define if you have the socklen_t type. */
#undef HAVE_SOCKLEN_T

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

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

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

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

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

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

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

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

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

/* Define to 1 if you have the `strlcat' function. */
#undef HAVE_STRLCAT

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

/* Define to 1 if you have the `strmode' function. */
#undef HAVE_STRMODE

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

/* Define to 1 if you have the `strndup' function. */
#undef HAVE_STRNDUP

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

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

/* Define to 1 if you have the `strsuftoll' function. */
#undef HAVE_STRSUFTOLL

/* Define to 1 if you have the `strtoi' function. */
#undef HAVE_STRTOI

/* Define to 1 if you have the `strtoll' function. */
#undef HAVE_STRTOLL

/* Define to 1 if you have the `strtou' function. */
#undef HAVE_STRTOU

/* Define to 1 if `d_namlen' is a member of `struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_NAMLEN

/* Define to 1 if `f_iosize' is a member of `struct statvfs'. */
#undef HAVE_STRUCT_STATVFS_F_IOSIZE

/* Define to 1 if `st_atim' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_ATIM

/* Define to 1 if `st_birthtime' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BIRTHTIME

/* Define to 1 if `st_birthtimensec' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC

/* Define to 1 if `st_flags' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_FLAGS

/* Define to 1 if `st_gen' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_GEN

/* Define to 1 if `st_mtimensec' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_MTIMENSEC

/* Define to 1 if `tm_gmtoff' is a member of `struct tm'. */
#undef HAVE_STRUCT_TM_TM_GMTOFF

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

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

/* 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/endian.h> header file. */
#undef HAVE_SYS_ENDIAN_H

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

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

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

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

/* 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. */
#undef HAVE_SYS_PARAM_H

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

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

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

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

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

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

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

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

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

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

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

/* Define to 1 if the system has the type `uchar_t'. */
#undef HAVE_UCHAR_T

/* Define to 1 if you have the `uid_from_user' function. */
#undef HAVE_UID_FROM_USER

/* Define to 1 if the system has the type `uint_t'. */
#undef HAVE_UINT_T

/* Define to 1 if the system has the type `ulong_t'. */
#undef HAVE_ULONG_T

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

/* Define to 1 if you have the `user_from_uid' function. */
#undef HAVE_USER_FROM_UID

/* Define to 1 if the system has the type `ushort_t'. */
#undef HAVE_USHORT_T

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

/* Define to 1 if the system has the type `u_char'. */
#undef HAVE_U_CHAR

/* Define to 1 if the system has the type `u_int'. */
#undef HAVE_U_INT

/* Define to 1 if the system has the type `u_long'. */
#undef HAVE_U_LONG

/* Define to 1 if the system has the type `u_quad_t'. */
#undef HAVE_U_QUAD_T

/* Define to 1 if the system has the type `u_short'. */
#undef HAVE_U_SHORT

/* Define to 1 if you have the `vasnprintf' function. */
#undef HAVE_VASNPRINTF

/* Define to 1 if you have the `vasprintf' function. */
#undef HAVE_VASPRINTF

/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF

/* Define to 1 if you have the `__fpurge' function. */
#undef HAVE___FPURGE

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

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

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

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

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

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

/* Path to sh(1). */
#undef PATH_BSHELL

/* 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 you have the ANSI C header files. */
#undef STDC_HEADERS

/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
   significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
#  define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
#  undef WORDS_BIGENDIAN
# endif
#endif

/* Define for NetBSD headers. */
#undef _POSIX_C_SOURCE

/* Define for NetBSD headers. */
#undef _POSIX_SOURCE

/* Define for NetBSD headers. */
#undef _XOPEN_SOURCE

/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t

/* Define if you have uint16_t, but not u_int16_t. */
#undef u_int16_t

/* Define if you have uint32_t, but not u_int32_t. */
#undef u_int32_t

/* Define if you have uint64_t, but not u_int64_t. */
#undef u_int64_t

/* Define if you have uint8_t, but not u_int8_t. */
#undef u_int8_t

/* Define if you have u_int16_t, but not uint16_t. */
#undef uint16_t

/* Define if you have u_int32_t, but not uint32_t. */
#undef uint32_t

/* Define if you have u_int64_t, but not uint64_t. */
#undef uint64_t

/* Define if you have u_int8_t, but not uint8_t. */
#undef uint8_t

#include "compat_defs.h"
#endif /* !__NETBSD_NBTOOL_CONFIG_H__ */