forked from Pat-Laub/simpatico
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheaders.py
More file actions
623 lines (621 loc) · 42.5 KB
/
headers.py
File metadata and controls
623 lines (621 loc) · 42.5 KB
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
standard_header_defines = {
#each tuple should be (define, definition)
#where definition must be a single Word
"iso646.h" : [("and","&&"),("and_eq","&="),("bitand","&"),("bitor","|"),
("compl","~"),("not","!"),("not_eq","!="),("or","||"),("or_eq","|="),
("xor","^"),("xor_eq","^=")]
}
standard_header_types = {
"assert.h" : [],
"complex.h" : [],
"ctype.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"__locale_t", "locale_t"],
"errno.h" : [],
"fenv.h" : ["fexcept_t", "fenv_t"],
"inttypes.h" : ["int8_t", "int16_t", "int32_t", "int64_t", "uint8_t", "uint16_t",
"uint32_t", "uint64_t", "int_least8_t", "int_least16_t",
"int_least32_t", "int_least64_t", "uint_least8_t", "uint_least16_t",
"uint_least32_t", "uint_least64_t", "int_fast8_t", "int_fast16_t",
"int_fast32_t", "int_fast64_t", "uint_fast8_t", "uint_fast16_t",
"uint_fast32_t", "uint_fast64_t", "intptr_t", "uintptr_t", "intmax_t",
"uintmax_t", "__gwchar_t", "imaxdiv_t"],
"limits.h" : [],
"locale.h" : ["lconv", "__locale_t", "locale_t"],
"math.h" : ["float_t", "double_t", "_LIB_VERSION_TYPE"],
"signal.h" : ["__sig_atomic_t", "__sigset_t", "sig_atomic_t", "sigset_t",
"__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"pid_t", "uid_t", "sigval_t", "siginfo_t",
"sigevent_t", "sig_t",
"__s8", "__u8", "__s16", "__u16", "__s32", "__u32", "__s64", "__u64",
"umode_t", "__kernel_fd_set", "__kernel_key_t", "__kernel_mqd_t",
"__kernel_ino_t", "__kernel_mode_t", "__kernel_nlink_t",
"__kernel_off_t", "__kernel_pid_t", "__kernel_ipc_pid_t",
"__kernel_uid_t", "__kernel_gid_t", "__kernel_size_t",
"__kernel_ssize_t", "__kernel_ptrdiff_t", "__kernel_time_t",
"__kernel_suseconds_t", "__kernel_clock_t", "__kernel_timer_t",
"__kernel_clockid_t", "__kernel_daddr_t", "__kernel_caddr_t",
"__kernel_uid16_t", "__kernel_gid16_t", "__kernel_uid32_t",
"__kernel_gid32_t", "__kernel_old_uid_t", "__kernel_old_gid_t",
"__kernel_old_dev_t", "__kernel_loff_t", "__kernel_fsid_t", "__le16",
"__be16", "__le32", "__be32", "__le64", "__be64", "__sum16", "__wsum",
"size_t", "stack_t", "greg_t", "gregset_t[19]", "_libc_fpreg",
"_libc_fpstate", "fpregset_t", "mcontext_t", "ucontext_t", "pthread_t",
"pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t"],
"stdint.h" : ["int8_t", "int16_t", "int32_t", "int64_t", "uint8_t", "uint16_t",
"uint32_t", "uint64_t", "int_least8_t", "int_least16_t",
"int_least32_t", "int_least64_t", "uint_least8_t", "uint_least16_t",
"uint_least32_t", "uint_least64_t", "int_fast8_t", "int_fast16_t",
"int_fast32_t", "int_fast64_t", "uint_fast8_t", "uint_fast16_t",
"uint_fast32_t", "uint_fast64_t", "intptr_t", "uintptr_t", "intmax_t",
"uintmax_t"],
"stdio.h" : ["size_t", "__u_char", "__u_short", "__u_int", "__u_long",
"__int8_t", "__uint8_t", "__int16_t", "__uint16_t", "__int32_t",
"__uint32_t", "__int64_t", "__uint64_t", "__quad_t", "__u_quad_t",
"__dev_t", "__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t",
"__nlink_t", "__off_t", "__off64_t", "__pid_t", "__fsid_t",
"__clock_t", "__rlim_t", "__rlim64_t", "__id_t", "__time_t",
"__useconds_t", "__suseconds_t", "__daddr_t", "__swblk_t", "__key_t",
"__clockid_t", "__timer_t", "__blksize_t", "__blkcnt_t",
"__blkcnt64_t", "__fsblkcnt_t", "__fsblkcnt64_t", "__fsfilcnt_t",
"__fsfilcnt64_t", "__ssize_t", "__loff_t", "__qaddr_t", "__caddr_t",
"__intptr_t", "__socklen_t", "_IO_FILE", "FILE", "__FILE",
"__mbstate_t", "_G_fpos_t", "_G_fpos64_t", "__gnuc_va_list",
"_IO_jump_t", "_IO_FILE", "_IO_lock_t", "__codecvt_result",
"_IO_FILE", "_IO_FILE_plus", "va_list", "off_t", "ssize_t", "fpos_t"],
"stdlib.h" : ["size_t", "wchar_t", "div_t", "ldiv_t", "lldiv_t", "__u_char",
"__u_short", "__u_int", "__u_long", "__int8_t", "__uint8_t",
"__int16_t", "__uint16_t", "__int32_t", "__uint32_t", "__int64_t",
"__uint64_t", "__quad_t", "__u_quad_t", "__dev_t", "__uid_t",
"__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t", "__off_t",
"__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "ulong", "ushort", "uint",
"__sig_atomic_t", "__sigset_t", "sigset_t", "suseconds_t", "__fd_mask",
"fd_set", "fd_mask", "blksize_t", "blkcnt_t", "fsblkcnt_t",
"fsfilcnt_t", "pthread_t", "pthread_attr_t", "__pthread_slist_t",
"pthread_mutex_t", "pthread_mutexattr_t", "pthread_cond_t",
"pthread_condattr_t", "pthread_key_t", "pthread_once_t",
"pthread_rwlock_t", "pthread_rwlockattr_t", "pthread_spinlock_t",
"pthread_barrier_t", "pthread_barrierattr_t"],
"string.h" : ["size_t", "__locale_t", "locale_t"],
"pthread.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"size_t", "time_t", "pid_t", "__cpu_mask", "cpu_set_t", "clock_t",
"clockid_t", "timer_t", "tm", "sigevent", "__locale_t", "locale_t",
"pthread_t", "pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t", "__jmp_buf[6]", "_pthread_cleanup_buffer",
"__pthread_cleanup_frame", "__jmp_buf_tag"],
"tgmath.h" : ["float_t", "double_t", "_LIB_VERSION_TYPE"],
"time.h" : ["size_t", "__u_char", "__u_short", "__u_int", "__u_long",
"__int8_t", "__uint8_t", "__int16_t", "__uint16_t", "__int32_t",
"__uint32_t", "__int64_t", "__uint64_t", "__quad_t", "__u_quad_t",
"__dev_t", "__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t",
"__nlink_t", "__off_t", "__off64_t", "__pid_t", "__fsid_t",
"__clock_t", "__rlim_t", "__rlim64_t", "__id_t", "__time_t",
"__useconds_t", "__suseconds_t", "__daddr_t", "__swblk_t", "__key_t",
"__clockid_t", "__timer_t", "__blksize_t", "__blkcnt_t",
"__blkcnt64_t", "__fsblkcnt_t", "__fsblkcnt64_t", "__fsfilcnt_t",
"__fsfilcnt64_t", "__ssize_t", "__loff_t", "__qaddr_t", "__caddr_t",
"__intptr_t", "__socklen_t", "clock_t", "time_t", "clockid_t",
"timer_t", "tm", "sigevent", "pid_t", "__locale_t", "locale_t"],
"wchar.h" : ["_IO_FILE", "FILE", "__FILE", "__gnuc_va_list", "size_t",
"wchar_t", "wint_t", "__mbstate_t", "mbstate_t", "tm", "__locale_t",
"locale_t"],
"wctype.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"wint_t", "wctype_t", "wctrans_t", "__locale_t", "locale_t"],
"unistd.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"ssize_t", "size_t", "gid_t", "uid_t", "off_t", "useconds_t", "pid_t",
"intptr_t", "socklen_t"],
"netdb.h" : ["int8_t", "int16_t", "int32_t", "int64_t", "uint8_t", "uint16_t",
"uint32_t", "uint64_t", "int_least8_t", "int_least16_t",
"int_least32_t", "int_least64_t", "uint_least8_t", "uint_least16_t",
"uint_least32_t", "uint_least64_t", "int_fast8_t", "int_fast16_t",
"int_fast32_t", "int_fast64_t", "uint_fast8_t", "uint_fast16_t",
"uint_fast32_t", "uint_fast64_t", "intptr_t", "uintptr_t", "intmax_t",
"uintmax_t", "__u_char", "__u_short", "__u_int", "__u_long",
"__int8_t", "__uint8_t", "__int16_t", "__uint16_t", "__int32_t",
"__uint32_t", "__int64_t", "__uint64_t", "__quad_t", "__u_quad_t",
"__dev_t", "__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t",
"__nlink_t", "__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t",
"__rlim_t", "__rlim64_t", "__id_t", "__time_t", "__useconds_t",
"__suseconds_t", "__daddr_t", "__swblk_t", "__key_t", "__clockid_t",
"__timer_t", "__blksize_t", "__blkcnt_t", "__blkcnt64_t",
"__fsblkcnt_t", "__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t",
"__ssize_t", "__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t",
"__socklen_t", "u_char", "u_short", "u_int", "u_long", "quad_t",
"u_quad_t", "fsid_t", "loff_t", "ino_t", "dev_t", "gid_t", "mode_t",
"nlink_t", "uid_t", "off_t", "pid_t", "id_t", "ssize_t", "daddr_t",
"caddr_t", "key_t", "clock_t", "time_t", "clockid_t", "timer_t",
"size_t", "ulong", "ushort", "uint", "__sig_atomic_t", "__sigset_t",
"sigset_t", "suseconds_t", "__fd_mask", "fd_set", "fd_mask",
"blksize_t", "blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t",
"pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t", "socklen_t", "__socket_type", "sa_family_t",
"in_port_t", "in_addr_t", "rpcent", "netent", "hostent", "servent",
"protoent", "addrinfo"],
"sys/types.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "size_t", "ulong",
"ushort", "uint", "__sig_atomic_t", "__sigset_t", "sigset_t",
"suseconds_t", "__fd_mask", "fd_set", "fd_mask", "blksize_t",
"blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t", "pthread_attr_t",
"__pthread_slist_t", "pthread_mutex_t", "pthread_mutexattr_t",
"pthread_cond_t", "pthread_condattr_t", "pthread_key_t",
"pthread_once_t", "pthread_rwlock_t", "pthread_rwlockattr_t",
"pthread_spinlock_t", "pthread_barrier_t", "pthread_barrierattr_t"],
"sys/socket.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "size_t", "ulong",
"ushort", "uint", "__sig_atomic_t", "__sigset_t", "sigset_t",
"suseconds_t", "__fd_mask", "fd_set", "fd_mask", "blksize_t",
"blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t", "pthread_attr_t",
"__pthread_slist_t", "pthread_mutex_t", "pthread_mutexattr_t",
"pthread_cond_t", "pthread_condattr_t", "pthread_key_t",
"pthread_once_t", "pthread_rwlock_t", "pthread_rwlockattr_t",
"pthread_spinlock_t", "pthread_barrier_t", "pthread_barrierattr_t",
"socklen_t", "__socket_type", "sa_family_t"],
"netinet/in.h" : ["int8_t", "int16_t", "int32_t", "int64_t", "uint8_t",
"uint16_t", "uint32_t", "uint64_t", "int_least8_t", "int_least16_t",
"int_least32_t", "int_least64_t", "uint_least8_t", "uint_least16_t",
"uint_least32_t", "uint_least64_t", "int_fast8_t", "int_fast16_t",
"int_fast32_t", "int_fast64_t", "uint_fast8_t", "uint_fast16_t",
"uint_fast32_t", "uint_fast64_t", "intptr_t", "uintptr_t", "intmax_t",
"uintmax_t", "__u_char", "__u_short", "__u_int", "__u_long",
"__int8_t", "__uint8_t", "__int16_t", "__uint16_t", "__int32_t",
"__uint32_t", "__int64_t", "__uint64_t", "__quad_t", "__u_quad_t",
"__dev_t", "__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t",
"__nlink_t", "__off_t", "__off64_t", "__pid_t", "__fsid_t",
"__clock_t", "__rlim_t", "__rlim64_t", "__id_t", "__time_t",
"__useconds_t", "__suseconds_t", "__daddr_t", "__swblk_t", "__key_t",
"__clockid_t", "__timer_t", "__blksize_t", "__blkcnt_t",
"__blkcnt64_t", "__fsblkcnt_t", "__fsblkcnt64_t", "__fsfilcnt_t",
"__fsfilcnt64_t", "__ssize_t", "__loff_t", "__qaddr_t", "__caddr_t",
"__intptr_t", "__socklen_t", "u_char", "u_short", "u_int", "u_long",
"quad_t", "u_quad_t", "fsid_t", "loff_t", "ino_t", "dev_t", "gid_t",
"mode_t", "nlink_t", "uid_t", "off_t", "pid_t", "id_t", "ssize_t",
"daddr_t", "caddr_t", "key_t", "clock_t", "time_t", "clockid_t",
"timer_t", "size_t", "ulong", "ushort", "uint", "__sig_atomic_t",
"__sigset_t", "sigset_t", "suseconds_t", "__fd_mask", "fd_set",
"fd_mask", "blksize_t", "blkcnt_t", "fsblkcnt_t", "fsfilcnt_t",
"pthread_t", "pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t", "socklen_t", "__socket_type", "sa_family_t",
"in_port_t", "in_addr_t"],
"arpa/inet.h" : ["int8_t", "int16_t", "int32_t", "int64_t", "uint8_t",
"uint16_t", "uint32_t", "uint64_t", "int_least8_t", "int_least16_t",
"int_least32_t", "int_least64_t", "uint_least8_t", "uint_least16_t",
"uint_least32_t", "uint_least64_t", "int_fast8_t", "int_fast16_t",
"int_fast32_t", "int_fast64_t", "uint_fast8_t", "uint_fast16_t",
"uint_fast32_t", "uint_fast64_t", "intptr_t", "uintptr_t", "intmax_t",
"uintmax_t", "__u_char", "__u_short", "__u_int", "__u_long",
"__int8_t", "__uint8_t", "__int16_t", "__uint16_t", "__int32_t",
"__uint32_t", "__int64_t", "__uint64_t", "__quad_t", "__u_quad_t",
"__dev_t", "__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t",
"__nlink_t", "__off_t", "__off64_t", "__pid_t", "__fsid_t",
"__clock_t", "__rlim_t", "__rlim64_t", "__id_t", "__time_t",
"__useconds_t", "__suseconds_t", "__daddr_t", "__swblk_t", "__key_t",
"__clockid_t", "__timer_t", "__blksize_t", "__blkcnt_t",
"__blkcnt64_t", "__fsblkcnt_t", "__fsblkcnt64_t", "__fsfilcnt_t",
"__fsfilcnt64_t", "__ssize_t", "__loff_t", "__qaddr_t", "__caddr_t",
"__intptr_t", "__socklen_t", "u_char", "u_short", "u_int", "u_long",
"quad_t", "u_quad_t", "fsid_t", "loff_t", "ino_t", "dev_t", "gid_t",
"mode_t", "nlink_t", "uid_t", "off_t", "pid_t", "id_t", "ssize_t",
"daddr_t", "caddr_t", "key_t", "clock_t", "time_t", "clockid_t",
"timer_t", "size_t", "ulong", "ushort", "uint", "__sig_atomic_t",
"__sigset_t", "sigset_t", "suseconds_t", "__fd_mask", "fd_set",
"fd_mask", "blksize_t", "blkcnt_t", "fsblkcnt_t", "fsfilcnt_t",
"pthread_t", "pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t", "socklen_t", "__socket_type", "sa_family_t",
"in_port_t", "in_addr_t"],
"sys/wait.h" : ["__sig_atomic_t", "__sigset_t", "sig_atomic_t", "sigset_t",
"__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"pid_t", "uid_t", "sigval_t", "siginfo_t", "sigevent_t", "sig_t",
"__s8", "__u8", "__s16", "__u16", "__s32", "__u32", "__s64", "__u64",
"umode_t", "__kernel_fd_set", "__kernel_key_t", "__kernel_mqd_t",
"__kernel_ino_t", "__kernel_mode_t", "__kernel_nlink_t",
"__kernel_off_t", "__kernel_pid_t", "__kernel_ipc_pid_t",
"__kernel_uid_t", "__kernel_gid_t", "__kernel_size_t",
"__kernel_ssize_t", "__kernel_ptrdiff_t", "__kernel_time_t",
"__kernel_suseconds_t", "__kernel_clock_t", "__kernel_timer_t",
"__kernel_clockid_t", "__kernel_daddr_t", "__kernel_caddr_t",
"__kernel_uid16_t", "__kernel_gid16_t", "__kernel_uid32_t",
"__kernel_gid32_t", "__kernel_old_uid_t", "__kernel_old_gid_t",
"__kernel_old_dev_t", "__kernel_loff_t", "__kernel_fsid_t", "__le16",
"__be16", "__le32", "__be32", "__le64", "__be64", "__sum16", "__wsum",
"size_t", "stack_t", "greg_t", "gregset_t[19]", "_libc_fpreg",
"_libc_fpstate", "fpregset_t", "mcontext_t", "ucontext_t", "pthread_t",
"pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t", "__rlimit_resource", "rlim_t", "__rusage_who",
"__priority_which", "id_t", "__rlimit_resource_t", "__rusage_who_t",
"__priority_which_t", "idtype_t", "rusage"],
"fcntl.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "size_t", "ulong",
"ushort", "uint", "__sig_atomic_t", "__sigset_t", "sigset_t",
"suseconds_t", "__fd_mask", "fd_set", "fd_mask", "blksize_t",
"blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t", "pthread_attr_t",
"__pthread_slist_t", "pthread_mutex_t", "pthread_mutexattr_t",
"pthread_cond_t", "pthread_condattr_t", "pthread_key_t",
"pthread_once_t", "pthread_rwlock_t", "pthread_rwlockattr_t",
"pthread_spinlock_t", "pthread_barrier_t", "pthread_barrierattr_t"],
"semaphore.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "size_t", "ulong",
"ushort", "uint", "__sig_atomic_t", "__sigset_t", "sigset_t",
"suseconds_t", "__fd_mask", "fd_set", "fd_mask", "blksize_t",
"blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t", "pthread_attr_t",
"__pthread_slist_t", "pthread_mutex_t", "pthread_mutexattr_t",
"pthread_cond_t", "pthread_condattr_t", "pthread_key_t",
"pthread_once_t", "pthread_rwlock_t", "pthread_rwlockattr_t",
"pthread_spinlock_t", "pthread_barrier_t", "pthread_barrierattr_t",
"sem_t"],
"stdbool.h" : ["bool", "_Bool"],
"sys/signal.h" : ["__sig_atomic_t", "__sigset_t", "sig_atomic_t", "sigset_t",
"__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"pid_t", "uid_t", "sigval_t", "siginfo_t", "sigevent_t", "sig_t",
"__s8", "__u8", "__s16", "__u16", "__s32", "__u32", "__s64", "__u64",
"umode_t", "__kernel_fd_set", "__kernel_key_t", "__kernel_mqd_t",
"__kernel_ino_t", "__kernel_mode_t", "__kernel_nlink_t",
"__kernel_off_t", "__kernel_pid_t", "__kernel_ipc_pid_t",
"__kernel_uid_t", "__kernel_gid_t", "__kernel_size_t",
"__kernel_ssize_t", "__kernel_ptrdiff_t", "__kernel_time_t",
"__kernel_suseconds_t", "__kernel_clock_t", "__kernel_timer_t",
"__kernel_clockid_t", "__kernel_daddr_t", "__kernel_caddr_t",
"__kernel_uid16_t", "__kernel_gid16_t", "__kernel_uid32_t",
"__kernel_gid32_t", "__kernel_old_uid_t", "__kernel_old_gid_t",
"__kernel_old_dev_t", "__kernel_loff_t", "__kernel_fsid_t", "__le16",
"__be16", "__le32", "__be32", "__le64", "__be64", "__sum16", "__wsum",
"size_t", "stack_t", "greg_t", "gregset_t[19]", "_libc_fpreg",
"_libc_fpstate", "fpregset_t", "mcontext_t", "ucontext_t", "pthread_t",
"pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t"],
"sys/uio.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "size_t", "ulong",
"ushort", "uint", "__sig_atomic_t", "__sigset_t", "sigset_t",
"suseconds_t", "__fd_mask", "fd_set", "fd_mask", "blksize_t",
"blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t", "pthread_attr_t",
"__pthread_slist_t", "pthread_mutex_t", "pthread_mutexattr_t",
"pthread_cond_t", "pthread_condattr_t", "pthread_key_t",
"pthread_once_t", "pthread_rwlock_t", "pthread_rwlockattr_t",
"pthread_spinlock_t", "pthread_barrier_t", "pthread_barrierattr_t"],
"sys/time.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"time_t", "__sig_atomic_t", "__sigset_t", "sigset_t", "suseconds_t",
"__fd_mask", "fd_set", "fd_mask", "__timezone_ptr_t",
"__itimer_which_t"],
"wait.h" : ["__sig_atomic_t", "__sigset_t", "sig_atomic_t", "sigset_t",
"__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"pid_t", "uid_t", "sigval_t", "siginfo_t", "sigevent_t", "sig_t",
"__s8", "__u8", "__s16", "__u16", "__s32", "__u32", "__s64", "__u64",
"umode_t", "__kernel_fd_set", "__kernel_key_t", "__kernel_mqd_t",
"__kernel_ino_t", "__kernel_mode_t", "__kernel_nlink_t",
"__kernel_off_t", "__kernel_pid_t", "__kernel_ipc_pid_t",
"__kernel_uid_t", "__kernel_gid_t", "__kernel_size_t",
"__kernel_ssize_t", "__kernel_ptrdiff_t", "__kernel_time_t",
"__kernel_suseconds_t", "__kernel_clock_t", "__kernel_timer_t",
"__kernel_clockid_t", "__kernel_daddr_t", "__kernel_caddr_t",
"__kernel_uid16_t", "__kernel_gid16_t", "__kernel_uid32_t",
"__kernel_gid32_t", "__kernel_old_uid_t", "__kernel_old_gid_t",
"__kernel_old_dev_t", "__kernel_loff_t", "__kernel_fsid_t", "__le16",
"__be16", "__le32", "__be32", "__le64", "__be64", "__sum16", "__wsum",
"size_t", "stack_t", "greg_t", "gregset_t[19]", "_libc_fpreg",
"_libc_fpstate", "fpregset_t", "mcontext_t", "ucontext_t", "pthread_t",
"pthread_attr_t", "__pthread_slist_t", "pthread_mutex_t",
"pthread_mutexattr_t", "pthread_cond_t", "pthread_condattr_t",
"pthread_key_t", "pthread_once_t", "pthread_rwlock_t",
"pthread_rwlockattr_t", "pthread_spinlock_t", "pthread_barrier_t",
"pthread_barrierattr_t", "__rlimit_resource", "rlim_t", "__rusage_who",
"__priority_which", "id_t", "__rlimit_resource_t", "__rusage_who_t",
"__priority_which_t", "idtype_t", "rusage"],
"sys/select.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"__sig_atomic_t", "__sigset_t", "sigset_t", "time_t", "suseconds_t",
"__fd_mask", "fd_set", "fd_mask"],
"poll.h" : ["nfds_t"],
"sys/poll.h" : ["nfds_t"],
"sys/stat.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"time_t", "dev_t", "gid_t", "ino_t", "mode_t", "nlink_t", "off_t",
"uid_t"],
"stddef.h" : ["ptrdiff_t", "size_t", "wchar_t"],
"sys/ipc.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"__ipc_pid_t", "uid_t", "gid_t", "mode_t", "key_t"],
"sys/sem.h" : [],
"regex.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "size_t", "ulong",
"ushort", "uint", "__sig_atomic_t", "__sigset_t", "sigset_t",
"suseconds_t", "__fd_mask", "fd_set", "fd_mask", "blksize_t",
"blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t", "pthread_attr_t",
"__pthread_list_t", "pthread_mutex_t", "pthread_mutexattr_t",
"pthread_cond_t", "pthread_condattr_t", "pthread_key_t",
"pthread_once_t", "pthread_rwlock_t", "pthread_rwlockattr_t",
"pthread_spinlock_t", "pthread_barrier_t", "pthread_barrierattr_t",
"s_reg_t", "active_reg_t", "reg_syntax_t", "reg_errcode_t",
"re_pattern_buffer", "regex_t", "regoff_t", "regmatch_t"],
"resolv.h" : ["__u_char", "__u_short", "__u_int", "__u_long", "__int8_t",
"__uint8_t", "__int16_t", "__uint16_t", "__int32_t", "__uint32_t",
"__int64_t", "__uint64_t", "__quad_t", "__u_quad_t", "__dev_t",
"__uid_t", "__gid_t", "__ino_t", "__ino64_t", "__mode_t", "__nlink_t",
"__off_t", "__off64_t", "__pid_t", "__fsid_t", "__clock_t", "__rlim_t",
"__rlim64_t", "__id_t", "__time_t", "__useconds_t", "__suseconds_t",
"__daddr_t", "__swblk_t", "__key_t", "__clockid_t", "__timer_t",
"__blksize_t", "__blkcnt_t", "__blkcnt64_t", "__fsblkcnt_t",
"__fsblkcnt64_t", "__fsfilcnt_t", "__fsfilcnt64_t", "__ssize_t",
"__loff_t", "__qaddr_t", "__caddr_t", "__intptr_t", "__socklen_t",
"u_char", "u_short", "u_int", "u_long", "quad_t", "u_quad_t", "fsid_t",
"loff_t", "ino_t", "dev_t", "gid_t", "mode_t", "nlink_t", "uid_t",
"off_t", "pid_t", "id_t", "ssize_t", "daddr_t", "caddr_t", "key_t",
"clock_t", "time_t", "clockid_t", "timer_t", "size_t", "ulong",
"ushort", "uint", "__sig_atomic_t", "__sigset_t", "sigset_t",
"suseconds_t", "__fd_mask", "fd_set", "fd_mask", "blksize_t",
"blkcnt_t", "fsblkcnt_t", "fsfilcnt_t", "pthread_t", "pthread_attr_t",
"__pthread_list_t", "pthread_mutex_t", "pthread_mutexattr_t",
"pthread_cond_t", "pthread_condattr_t", "pthread_key_t",
"pthread_once_t", "pthread_rwlock_t", "pthread_rwlockattr_t",
"pthread_spinlock_t", "pthread_barrier_t", "pthread_barrierattr_t",
"uint8_t", "uint16_t", "uint32_t", "uint64_t", "int_least8_t",
"int_least16_t", "int_least32_t", "int_least64_t", "uint_least8_t",
"uint_least16_t", "uint_least32_t", "uint_least64_t", "int_fast8_t",
"int_fast16_t", "int_fast32_t", "int_fast64_t", "uint_fast8_t",
"uint_fast16_t", "uint_fast32_t", "uint_fast64_t", "intptr_t",
"uintptr_t", "intmax_t", "uintmax_t", "socklen_t", "__socket_type",
"sa_family_t", "in_port_t", "in_addr_t", "_IO_FILE", "FILE", "__FILE",
"__mbstate_t", "_G_fpos_t", "_G_fpos64_t", "__gnuc_va_list",
"_IO_jump_t", "_IO_FILE", "_IO_lock_t", "__codecvt_result", "_IO_FILE",
"_IO_FILE_plus", "va_list", "fpos_t", "ns_sect", "ns_msg", "ns_rr",
"ns_flag", "ns_opcode", "ns_rcode", "ns_update_operation",
"ns_tsig_key", "ns_tcp_tsig_state", "ns_type", "ns_class",
"ns_key_types", "ns_cert_types", "HEADER", "res_sendhookact",
"res_state"],
"strings.h" : ["size_t", "__locale_t", "locale_t"],
"error.h" : [],
"err.h" : ["__gnuc_va_list"],
"malloc.h" : ["ptrdiff_t", "size_t", "wchar_t", "__u_char", "__u_short",
"__u_int", "__u_long", "__int8_t", "__uint8_t", "__int16_t",
"__uint16_t", "__int32_t", "__uint32_t", "__int64_t", "__uint64_t",
"__quad_t", "__u_quad_t", "__dev_t", "__uid_t", "__gid_t", "__ino_t",
"__ino64_t", "__mode_t", "__nlink_t", "__off_t", "__off64_t",
"__pid_t", "__fsid_t", "__clock_t", "__rlim_t", "__rlim64_t", "__id_t",
"__time_t", "__useconds_t", "__suseconds_t", "__daddr_t", "__swblk_t",
"__key_t", "__clockid_t", "__timer_t", "__blksize_t", "__blkcnt_t",
"__blkcnt64_t", "__fsblkcnt_t", "__fsblkcnt64_t", "__fsfilcnt_t",
"__fsfilcnt64_t", "__ssize_t", "__loff_t", "__qaddr_t", "__caddr_t",
"__intptr_t", "__socklen_t", "_IO_FILE", "FILE", "__FILE",
"__mbstate_t", "_G_fpos_t", "_G_fpos64_t", "__gnuc_va_list",
"_IO_jump_t", "_IO_FILE", "_IO_lock_t", "__codecvt_result", "_IO_FILE",
"_IO_FILE_plus", "va_list", "off_t", "ssize_t", "fpos_t"],
"stdarg.h" : ["va_list", "__gnuc_va_list"],
"sys/ioctl.h" : [],
"ifaddrs.h" : [],
"sched.h" : ["__int8_t", "__uint8_t", "__int16_t", "__uint16_t", "__int32_t",
"__uint32_t", "__int64_t", "__uint64_t", "__int_least8_t",
"__uint_least8_t", "__int_least16_t", "__uint_least16_t",
"__int_least32_t", "__uint_least32_t", "__int_least64_t",
"__uint_least64_t", "__int_fast8_t", "__uint_fast8_t",
"__int_fast16_t", "__uint_fast16_t", "__int_fast32_t",
"__uint_fast32_t", "__int_fast64_t", "__uint_fast64_t", "__intptr_t",
"__uintptr_t", "__intmax_t", "__uintmax_t", "__register_t",
"__vaddr_t", "__paddr_t", "__vsize_t", "__psize_t", "__clock_t",
"__clockid_t", "__double_t", "__float_t", "__off_t", "__ptrdiff_t",
"__size_t", "__ssize_t", "__time_t", "__timer_t", "__va_list",
"__wchar_t", "__wint_t", "__rune_t", "__wctrans_t", "__wctype_t",
"__cpuid_t", "__dev_t", "__fixpt_t", "__gid_t", "__id_t",
"__in_addr_t", "__in_port_t", "__ino_t", "__key_t", "__mode_t",
"__nlink_t", "__pid_t", "__rlim_t", "__sa_family_t", "__segsz_t",
"__socklen_t", "__swblk_t", "__uid_t", "__useconds_t", "__suseconds_t",
"__fsblkcnt_t", "__fsfilcnt_t", "__mbstate_t", "u_char", "u_short",
"u_int", "u_long", "unchar", "ushort", "uint", "ulong", "cpuid_t",
"register_t", "int8_t", "uint8_t", "int16_t", "uint16_t", "int32_t",
"uint32_t", "int64_t", "uint64_t", "u_int8_t", "u_int16_t",
"u_int32_t", "u_int64_t", "quad_t", "u_quad_t", "qaddr_t",
"vaddr_t", "paddr_t", "vsize_t", "psize_t", "caddr_t", "daddr32_t",
"daddr_t", "daddr64_t", "dev_t", "fixpt_t", "gid_t", "id_t", "ino_t",
"key_t", "mode_t", "nlink_t", "pid_t", "rlim_t", "segsz_t", "swblk_t",
"uid_t", "useconds_t", "suseconds_t", "fsblkcnt_t", "fsfilcnt_t",
"in_addr_t", "in_port_t", "clock_t", "clockid_t", "size_t", "ssize_t",
"time_t", "timer_t", "off_t", "__fd_mask", "fd_set", "timeval",
"sched_param"],
"netinet/tcp.h" : ["tcp_seq"],
"termios.h" : ["tcflag_t", "cc_t", "speed_t"],
"iso646.h" : []
}