Loading...
   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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 45;
	objects = {

/* Begin PBXAggregateTarget section */
		24614EF311E7C98600E78584 /* Syscalls */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 24614EFD11E7C9B900E78584 /* Build configuration list for PBXAggregateTarget "Syscalls" */;
			buildPhases = (
				24614EF211E7C98600E78584 /* Generate Syscalls */,
				24614EF611E7C9A000E78584 /* Compile Syscalls */,
			);
			dependencies = (
			);
			name = Syscalls;
			productName = Syscalls;
		};
		249C61101194755D00ED73F3 /* Build */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 249C61191194756B00ED73F3 /* Build configuration list for PBXAggregateTarget "Build" */;
			buildPhases = (
			);
			dependencies = (
				249C61151194756A00ED73F3 /* PBXTargetDependency */,
			);
			name = Build;
			productName = Build;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		240BAC4C1214770F000A1719 /* memcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 24B028D511FF4FBB00CA64A9 /* memcpy.c */; };
		2419382B12135FF6003CDE41 /* chmod.c in Sources */ = {isa = PBXBuildFile; fileRef = 2419382A12135FF6003CDE41 /* chmod.c */; };
		242AB66611EBDC1200107336 /* errno.c in Sources */ = {isa = PBXBuildFile; fileRef = 242AB66511EBDC1200107336 /* errno.c */; };
		24484A7511F6178E00E10CD2 /* string.c in Sources */ = {isa = PBXBuildFile; fileRef = 24484A7411F51E9800E10CD2 /* string.c */; };
		24484A9411F61D2B00E10CD2 /* mig_reply_port.c in Sources */ = {isa = PBXBuildFile; fileRef = 24484A9311F61D1900E10CD2 /* mig_reply_port.c */; };
		24614F0411E7CB5B00E78584 /* syscalls.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24614F0311E7CB5B00E78584 /* syscalls.a */; };
		247A08C211F8BDC900E4693F /* _libkernel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 247A08B311F8B05900E4693F /* _libkernel_init.c */; };
		247A090011F8E18000E4693F /* abort.h in Headers */ = {isa = PBXBuildFile; fileRef = 247A08FF11F8E18000E4693F /* abort.h */; };
		247A091711F8E7A800E4693F /* exc_catcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 247A091611F8E7A800E4693F /* exc_catcher.h */; };
		2485235511582D8F0051B413 /* mach_legacy.c in Sources */ = {isa = PBXBuildFile; fileRef = 2485235411582D8F0051B413 /* mach_legacy.c */; };
		248AA963122C7B2A0085F5B1 /* unlink.c in Sources */ = {isa = PBXBuildFile; fileRef = 248AA962122C7B2A0085F5B1 /* unlink.c */; };
		248AA965122C7C330085F5B1 /* rmdir.c in Sources */ = {isa = PBXBuildFile; fileRef = 248AA964122C7C330085F5B1 /* rmdir.c */; };
		248AA967122C7CDA0085F5B1 /* rename.c in Sources */ = {isa = PBXBuildFile; fileRef = 248AA966122C7CDA0085F5B1 /* rename.c */; };
		248BA01D121C56BF008C073F /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA01C121C56BF008C073F /* connect.c */; };
		248BA01F121C607E008C073F /* fchmod.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA01E121C607E008C073F /* fchmod.c */; };
		248BA04F121C8F06008C073F /* fcntl.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA04E121C8F06008C073F /* fcntl.c */; };
		248BA05C121C9649008C073F /* fcntl-cancel.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA051121C8FE2008C073F /* fcntl-cancel.c */; };
		248BA069121D9E27008C073F /* getrlimit.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA068121D9E27008C073F /* getrlimit.c */; };
		248BA080121DA36B008C073F /* ioctl.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA07F121DA36B008C073F /* ioctl.c */; };
		248BA082121DA4F3008C073F /* kill.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA081121DA4F3008C073F /* kill.c */; };
		248BA085121DA5E4008C073F /* kill.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA084121DA5E4008C073F /* kill.c */; };
		248BA087121DA72D008C073F /* mmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA086121DA72D008C073F /* mmap.c */; };
		248BA089121DA8E0008C073F /* mprotect.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA088121DA8E0008C073F /* mprotect.c */; };
		248BA08B121DAC86008C073F /* msync.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA08A121DAC86008C073F /* msync.c */; };
		248BA08D121DB0E7008C073F /* munmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA08C121DB0E7008C073F /* munmap.c */; };
		248BA08F121DC545008C073F /* open.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA08E121DC545008C073F /* open.c */; };
		248BA093121DE369008C073F /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA092121DE369008C073F /* select.c */; };
		248BA095121DE565008C073F /* select-pre1050.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA094121DE565008C073F /* select-pre1050.c */; };
		248BA0B3121DE760008C073F /* select-cancel.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA0B2121DE760008C073F /* select-cancel.c */; };
		248BA0BE121DE902008C073F /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA0BC121DE902008C073F /* select.c */; };
		248BA0CD121DEBEF008C073F /* setrlimit.c in Sources */ = {isa = PBXBuildFile; fileRef = 248BA0CC121DEBEF008C073F /* setrlimit.c */; };
		249C610B1194750E00ED73F3 /* libsystem_kernel.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC0630554660B00DB518D /* libsystem_kernel.a */; };
		249C612F1194828600ED73F3 /* dylib_link.c in Sources */ = {isa = PBXBuildFile; fileRef = 249C612C1194827D00ED73F3 /* dylib_link.c */; };
		24A7C5BC11FF8DA6007669EB /* accept.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5AE11FF8DA6007669EB /* accept.c */; };
		24A7C5BD11FF8DA6007669EB /* bind.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5AF11FF8DA6007669EB /* bind.c */; };
		24A7C5BF11FF8DA6007669EB /* getattrlist.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B111FF8DA6007669EB /* getattrlist.c */; };
		24A7C5C011FF8DA6007669EB /* getpeername.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B211FF8DA6007669EB /* getpeername.c */; };
		24A7C5C111FF8DA6007669EB /* getsockname.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B311FF8DA6007669EB /* getsockname.c */; };
		24A7C5C211FF8DA6007669EB /* lchown.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B411FF8DA6007669EB /* lchown.c */; };
		24A7C5C311FF8DA6007669EB /* listen.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B511FF8DA6007669EB /* listen.c */; };
		24A7C5C411FF8DA6007669EB /* recvfrom.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B611FF8DA6007669EB /* recvfrom.c */; };
		24A7C5C511FF8DA6007669EB /* recvmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B711FF8DA6007669EB /* recvmsg.c */; };
		24A7C5C611FF8DA6007669EB /* sendmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B811FF8DA6007669EB /* sendmsg.c */; };
		24A7C5C711FF8DA6007669EB /* sendto.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5B911FF8DA6007669EB /* sendto.c */; };
		24A7C5C811FF8DA6007669EB /* setattrlist.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5BA11FF8DA6007669EB /* setattrlist.c */; };
		24A7C5C911FF8DA6007669EB /* socketpair.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A7C5BB11FF8DA6007669EB /* socketpair.c */; };
		24B028F511FF5C3500CA64A9 /* _libkernel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 247A08B211F8B05900E4693F /* _libkernel_init.h */; settings = {ATTRIBUTES = (Private, ); }; };
		24B223B0121DFD36007DAEDE /* sigsuspend.c in Sources */ = {isa = PBXBuildFile; fileRef = 24B223AF121DFD36007DAEDE /* sigsuspend.c */; };
		24B223B2121DFE6D007DAEDE /* sigsuspend-cancel.c in Sources */ = {isa = PBXBuildFile; fileRef = 24B223B1121DFE6D007DAEDE /* sigsuspend-cancel.c */; };
		24B223B5121DFF29007DAEDE /* sigsuspend.c in Sources */ = {isa = PBXBuildFile; fileRef = 24B223B4121DFF29007DAEDE /* sigsuspend.c */; };
		24B8C2621237F53900D36CC3 /* remove-counter.c in Sources */ = {isa = PBXBuildFile; fileRef = 24B8C2611237F53900D36CC3 /* remove-counter.c */; };
		24D1158311E671B20063D54D /* SYS.h in Headers */ = {isa = PBXBuildFile; fileRef = 24D1157411E671B20063D54D /* SYS.h */; };
		24E4782712088267009A384D /* _libc_funcptr.c in Sources */ = {isa = PBXBuildFile; fileRef = 24E47824120881DF009A384D /* _libc_funcptr.c */; };
		C99A4F501305B2BD0054B7B7 /* __get_cpu_capabilities.s in Sources */ = {isa = PBXBuildFile; fileRef = C99A4F4E1305B1B70054B7B7 /* __get_cpu_capabilities.s */; };
		C99A4F531305B43F0054B7B7 /* init_cpu_capabilities.c in Sources */ = {isa = PBXBuildFile; fileRef = C99A4F511305B43F0054B7B7 /* init_cpu_capabilities.c */; };
		C9D9BD17114B00600000D8B9 /* vm_map_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCC2114B00600000D8B9 /* vm_map_compat.c */; };
		C9D9BD19114B00600000D8B9 /* clock_priv.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCC5114B00600000D8B9 /* clock_priv.defs */; };
		C9D9BD1A114B00600000D8B9 /* clock_reply.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCC6114B00600000D8B9 /* clock_reply.defs */; };
		C9D9BD1B114B00600000D8B9 /* clock_sleep.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCC7114B00600000D8B9 /* clock_sleep.c */; };
		C9D9BD1C114B00600000D8B9 /* clock.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCC8114B00600000D8B9 /* clock.defs */; };
		C9D9BD1D114B00600000D8B9 /* error_codes.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCD0114B00600000D8B9 /* error_codes.c */; };
		C9D9BD1E114B00600000D8B9 /* errorlib.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCD1114B00600000D8B9 /* errorlib.h */; };
		C9D9BD1F114B00600000D8B9 /* exc_catcher_state_identity.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCD2114B00600000D8B9 /* exc_catcher_state_identity.c */; };
		C9D9BD20114B00600000D8B9 /* exc_catcher_state.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCD3114B00600000D8B9 /* exc_catcher_state.c */; };
		C9D9BD21114B00600000D8B9 /* exc_catcher.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCD4114B00600000D8B9 /* exc_catcher.c */; };
		C9D9BD22114B00600000D8B9 /* exc.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCD5114B00600000D8B9 /* exc.defs */; settings = {ATTRIBUTES = (Client, Server, ); }; };
		C9D9BD23114B00600000D8B9 /* externs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCD6114B00600000D8B9 /* externs.h */; };
		C9D9BD24114B00600000D8B9 /* fprintf_stderr.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCD7114B00600000D8B9 /* fprintf_stderr.c */; };
		C9D9BD25114B00600000D8B9 /* errorlib.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCD9114B00600000D8B9 /* errorlib.h */; };
		C9D9BD26114B00600000D8B9 /* mach.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCDA114B00600000D8B9 /* mach.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD27114B00600000D8B9 /* mach_error.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCDB114B00600000D8B9 /* mach_error.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD28114B00600000D8B9 /* mach_init.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCDC114B00600000D8B9 /* mach_init.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD29114B00600000D8B9 /* mach_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCDD114B00600000D8B9 /* mach_interface.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD2B114B00600000D8B9 /* port_obj.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCDF114B00600000D8B9 /* port_obj.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD2C114B00600000D8B9 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCE0114B00600000D8B9 /* sync.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD2D114B00600000D8B9 /* task.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCE1114B00600000D8B9 /* task.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD2E114B00600000D8B9 /* thread_act.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCE2114B00600000D8B9 /* thread_act.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD2F114B00600000D8B9 /* vm_task.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BCE3114B00600000D8B9 /* vm_task.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C9D9BD30114B00600000D8B9 /* host_priv.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCE4114B00600000D8B9 /* host_priv.defs */; };
		C9D9BD31114B00600000D8B9 /* host_security.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCE5114B00600000D8B9 /* host_security.defs */; };
		C9D9BD34114B00600000D8B9 /* ledger.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCE9114B00600000D8B9 /* ledger.defs */; };
		C9D9BD35114B00600000D8B9 /* lock_set.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCEA114B00600000D8B9 /* lock_set.defs */; };
		C9D9BD36114B00600000D8B9 /* mach_error_string.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCEB114B00600000D8B9 /* mach_error_string.c */; };
		C9D9BD37114B00600000D8B9 /* mach_error.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCEC114B00600000D8B9 /* mach_error.c */; };
		C9D9BD38114B00600000D8B9 /* mach_host.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCED114B00600000D8B9 /* mach_host.defs */; };
		C9D9BD3B114B00600000D8B9 /* mach_init.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF0114B00600000D8B9 /* mach_init.c */; };
		C9D9BD3C114B00600000D8B9 /* mach_msg.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF1114B00600000D8B9 /* mach_msg.c */; };
		C9D9BD3D114B00600000D8B9 /* mach_port.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF2114B00600000D8B9 /* mach_port.defs */; };
		C9D9BD3E114B00600000D8B9 /* mach_traps.s in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF3114B00600000D8B9 /* mach_traps.s */; };
		C9D9BD3F114B00600000D8B9 /* mach_vm.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF4114B00600000D8B9 /* mach_vm.defs */; };
		C9D9BD41114B00600000D8B9 /* mig_allocate.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF6114B00600000D8B9 /* mig_allocate.c */; };
		C9D9BD42114B00600000D8B9 /* mig_deallocate.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF7114B00600000D8B9 /* mig_deallocate.c */; };
		C9D9BD43114B00600000D8B9 /* mig_reply_setup.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF8114B00600000D8B9 /* mig_reply_setup.c */; };
		C9D9BD44114B00600000D8B9 /* mig_strncpy.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCF9114B00600000D8B9 /* mig_strncpy.c */; };
		C9D9BD45114B00600000D8B9 /* ms_thread_switch.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCFA114B00600000D8B9 /* ms_thread_switch.c */; };
		C9D9BD46114B00600000D8B9 /* notify.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCFB114B00600000D8B9 /* notify.defs */; };
		C9D9BD47114B00600000D8B9 /* panic.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCFC114B00600000D8B9 /* panic.c */; };
		C9D9BD48114B00600000D8B9 /* port_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BCFD114B00600000D8B9 /* port_obj.c */; };
		C9D9BD4C114B00600000D8B9 /* processor_set.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD03114B00600000D8B9 /* processor_set.defs */; };
		C9D9BD4D114B00600000D8B9 /* processor.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD04114B00600000D8B9 /* processor.defs */; };
		C9D9BD4F114B00600000D8B9 /* semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD06114B00600000D8B9 /* semaphore.c */; };
		C9D9BD50114B00600000D8B9 /* key_defs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BD08114B00600000D8B9 /* key_defs.h */; };
		C9D9BD51114B00600000D8B9 /* ls_defs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BD09114B00600000D8B9 /* ls_defs.h */; };
		C9D9BD53114B00600000D8B9 /* netname.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD0B114B00600000D8B9 /* netname.defs */; };
		C9D9BD54114B00600000D8B9 /* netname_defs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BD0C114B00600000D8B9 /* netname_defs.h */; };
		C9D9BD55114B00600000D8B9 /* nm_defs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D9BD0D114B00600000D8B9 /* nm_defs.h */; };
		C9D9BD56114B00600000D8B9 /* slot_name.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD0E114B00600000D8B9 /* slot_name.c */; };
		C9D9BD57114B00600000D8B9 /* task.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD0F114B00600000D8B9 /* task.defs */; };
		C9D9BD58114B00600000D8B9 /* thread_act.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD10114B00600000D8B9 /* thread_act.defs */; };
		C9D9BD59114B00600000D8B9 /* vm_map.defs in Sources */ = {isa = PBXBuildFile; fileRef = C9D9BD11114B00600000D8B9 /* vm_map.defs */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		242AB67811ED03ED00107336 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 24614EF311E7C98600E78584;
			remoteInfo = Syscalls;
		};
		249C61091194750700ED73F3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC0620554660B00DB518D;
			remoteInfo = "Libmach Static";
		};
		249C61141194756A00ED73F3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 249C60FE1194747600ED73F3;
			remoteInfo = Libmach;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		240D716711933ED300556E97 /* mach_install_mig.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = mach_install_mig.sh; sourceTree = "<group>"; };
		2419382A12135FF6003CDE41 /* chmod.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chmod.c; sourceTree = "<group>"; };
		2427FA821200BCF800EF7A1F /* compat-symlinks.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "compat-symlinks.sh"; sourceTree = "<group>"; };
		242AB66511EBDC1200107336 /* errno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = errno.c; sourceTree = "<group>"; };
		24484A7311F51E9800E10CD2 /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string.h; sourceTree = "<group>"; };
		24484A7411F51E9800E10CD2 /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = string.c; sourceTree = "<group>"; };
		24484A9211F61D1900E10CD2 /* mig_reply_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mig_reply_port.h; sourceTree = "<group>"; };
		24484A9311F61D1900E10CD2 /* mig_reply_port.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mig_reply_port.c; sourceTree = "<group>"; };
		24614EA111E7A2ED00E78584 /* compile-syscalls.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = "compile-syscalls.pl"; sourceTree = "<group>"; };
		24614F0311E7CB5B00E78584 /* syscalls.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = syscalls.a; path = $BUILD_ROOT/syscalls.a; sourceTree = "<absolute>"; };
		247A08B211F8B05900E4693F /* _libkernel_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _libkernel_init.h; sourceTree = "<group>"; };
		247A08B311F8B05900E4693F /* _libkernel_init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = _libkernel_init.c; sourceTree = "<group>"; };
		247A08FF11F8E18000E4693F /* abort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = abort.h; sourceTree = "<group>"; };
		247A091611F8E7A800E4693F /* exc_catcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exc_catcher.h; sourceTree = "<group>"; };
		2485235411582D8F0051B413 /* mach_legacy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mach_legacy.c; sourceTree = "<group>"; };
		248AA962122C7B2A0085F5B1 /* unlink.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unlink.c; sourceTree = "<group>"; };
		248AA964122C7C330085F5B1 /* rmdir.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rmdir.c; sourceTree = "<group>"; };
		248AA966122C7CDA0085F5B1 /* rename.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rename.c; sourceTree = "<group>"; };
		248BA01C121C56BF008C073F /* connect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = connect.c; sourceTree = "<group>"; };
		248BA01E121C607E008C073F /* fchmod.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fchmod.c; sourceTree = "<group>"; };
		248BA04B121C8EE4008C073F /* fcntl-base.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "fcntl-base.c"; sourceTree = "<group>"; };
		248BA04E121C8F06008C073F /* fcntl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fcntl.c; sourceTree = "<group>"; };
		248BA051121C8FE2008C073F /* fcntl-cancel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "fcntl-cancel.c"; sourceTree = "<group>"; };
		248BA068121D9E27008C073F /* getrlimit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = getrlimit.c; sourceTree = "<group>"; };
		248BA07F121DA36B008C073F /* ioctl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ioctl.c; sourceTree = "<group>"; };
		248BA081121DA4F3008C073F /* kill.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = kill.c; sourceTree = "<group>"; };
		248BA084121DA5E4008C073F /* kill.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = kill.c; sourceTree = "<group>"; };
		248BA086121DA72D008C073F /* mmap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mmap.c; sourceTree = "<group>"; };
		248BA088121DA8E0008C073F /* mprotect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mprotect.c; sourceTree = "<group>"; };
		248BA08A121DAC86008C073F /* msync.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = msync.c; sourceTree = "<group>"; };
		248BA08C121DB0E7008C073F /* munmap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = munmap.c; sourceTree = "<group>"; };
		248BA08E121DC545008C073F /* open.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = open.c; sourceTree = "<group>"; };
		248BA090121DDD7F008C073F /* select-base.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "select-base.c"; sourceTree = "<group>"; };
		248BA092121DE369008C073F /* select.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = select.c; sourceTree = "<group>"; };
		248BA094121DE565008C073F /* select-pre1050.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "select-pre1050.c"; sourceTree = "<group>"; };
		248BA0B2121DE760008C073F /* select-cancel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "select-cancel.c"; sourceTree = "<group>"; };
		248BA0BC121DE902008C073F /* select.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = select.c; sourceTree = "<group>"; };
		248BA0CC121DEBEF008C073F /* setrlimit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = setrlimit.c; sourceTree = "<group>"; };
		249C60FF1194747600ED73F3 /* libsystem_kernel.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libsystem_kernel.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		249C612C1194827D00ED73F3 /* dylib_link.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dylib_link.c; sourceTree = "<group>"; };
		24A7C5AE11FF8DA6007669EB /* accept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = accept.c; sourceTree = "<group>"; };
		24A7C5AF11FF8DA6007669EB /* bind.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bind.c; sourceTree = "<group>"; };
		24A7C5B111FF8DA6007669EB /* getattrlist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = getattrlist.c; sourceTree = "<group>"; };
		24A7C5B211FF8DA6007669EB /* getpeername.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = getpeername.c; sourceTree = "<group>"; };
		24A7C5B311FF8DA6007669EB /* getsockname.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = getsockname.c; sourceTree = "<group>"; };
		24A7C5B411FF8DA6007669EB /* lchown.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lchown.c; sourceTree = "<group>"; };
		24A7C5B511FF8DA6007669EB /* listen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = listen.c; sourceTree = "<group>"; };
		24A7C5B611FF8DA6007669EB /* recvfrom.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = recvfrom.c; sourceTree = "<group>"; };
		24A7C5B711FF8DA6007669EB /* recvmsg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = recvmsg.c; sourceTree = "<group>"; };
		24A7C5B811FF8DA6007669EB /* sendmsg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sendmsg.c; sourceTree = "<group>"; };
		24A7C5B911FF8DA6007669EB /* sendto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sendto.c; sourceTree = "<group>"; };
		24A7C5BA11FF8DA6007669EB /* setattrlist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = setattrlist.c; sourceTree = "<group>"; };
		24A7C5BB11FF8DA6007669EB /* socketpair.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socketpair.c; sourceTree = "<group>"; };
		24A7C5CB11FF973C007669EB /* _errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _errno.h; sourceTree = "<group>"; };
		24B028D511FF4FBB00CA64A9 /* memcpy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memcpy.c; sourceTree = "<group>"; };
		24B223AF121DFD36007DAEDE /* sigsuspend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sigsuspend.c; sourceTree = "<group>"; };
		24B223B1121DFE6D007DAEDE /* sigsuspend-cancel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "sigsuspend-cancel.c"; sourceTree = "<group>"; };
		24B223B3121DFF12007DAEDE /* sigsuspend-base.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "sigsuspend-base.c"; sourceTree = "<group>"; };
		24B223B4121DFF29007DAEDE /* sigsuspend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sigsuspend.c; sourceTree = "<group>"; };
		24B8C2611237F53900D36CC3 /* remove-counter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "remove-counter.c"; sourceTree = "<group>"; };
		24D1156611E671B20063D54D /* __fork.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __fork.s; sourceTree = "<group>"; };
		24D1156711E671B20063D54D /* __getpid.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __getpid.s; sourceTree = "<group>"; };
		24D1156811E671B20063D54D /* __gettimeofday.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __gettimeofday.s; sourceTree = "<group>"; };
		24D1156911E671B20063D54D /* __lseek.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __lseek.s; sourceTree = "<group>"; };
		24D1156A11E671B20063D54D /* __pipe.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __pipe.s; sourceTree = "<group>"; };
		24D1156B11E671B20063D54D /* __psynch_cvbroad.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __psynch_cvbroad.s; sourceTree = "<group>"; };
		24D1156C11E671B20063D54D /* __psynch_cvwait.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __psynch_cvwait.s; sourceTree = "<group>"; };
		24D1156D11E671B20063D54D /* __ptrace.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __ptrace.s; sourceTree = "<group>"; };
		24D1156E11E671B20063D54D /* __sigaltstack.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __sigaltstack.s; sourceTree = "<group>"; };
		24D1156F11E671B20063D54D /* __sigreturn.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __sigreturn.s; sourceTree = "<group>"; };
		24D1157011E671B20063D54D /* __syscall.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __syscall.s; sourceTree = "<group>"; };
		24D1157111E671B20063D54D /* __thread_selfid.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __thread_selfid.s; sourceTree = "<group>"; };
		24D1157211E671B20063D54D /* __vfork.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = __vfork.s; sourceTree = "<group>"; };
		24D1157311E671B20063D54D /* custom.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = custom.s; sourceTree = "<group>"; };
		24D1157411E671B20063D54D /* SYS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SYS.h; sourceTree = "<group>"; };
		24D1158C11E672270063D54D /* syscall.map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = syscall.map; sourceTree = "<group>"; };
		24D1158F11E672270063D54D /* syscall.map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = syscall.map; sourceTree = "<group>"; };
		24D1159111E672270063D54D /* syscall.map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = syscall.map; sourceTree = "<group>"; };
		24D1159711E672270063D54D /* syscall.map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = syscall.map; sourceTree = "<group>"; };
		24D1159811E672270063D54D /* syscall.map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = syscall.map; sourceTree = "<group>"; };
		24D1159911E6723E0063D54D /* create-syscalls.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = "create-syscalls.pl"; sourceTree = "<group>"; };
		24E47824120881DF009A384D /* _libc_funcptr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = _libc_funcptr.c; sourceTree = "<group>"; };
		C99A4F4E1305B1B70054B7B7 /* __get_cpu_capabilities.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = __get_cpu_capabilities.s; sourceTree = "<group>"; };
		C99A4F511305B43F0054B7B7 /* init_cpu_capabilities.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = init_cpu_capabilities.c; sourceTree = "<group>"; };
		C9D9BCBF114B00600000D8B9 /* .open_source_exclude */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .open_source_exclude; sourceTree = "<group>"; };
		C9D9BCC2114B00600000D8B9 /* vm_map_compat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vm_map_compat.c; sourceTree = "<group>"; };
		C9D9BCC5114B00600000D8B9 /* clock_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_priv.defs; sourceTree = "<group>"; };
		C9D9BCC6114B00600000D8B9 /* clock_reply.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_reply.defs; sourceTree = "<group>"; };
		C9D9BCC7114B00600000D8B9 /* clock_sleep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = clock_sleep.c; sourceTree = "<group>"; };
		C9D9BCC8114B00600000D8B9 /* clock.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock.defs; sourceTree = "<group>"; };
		C9D9BCC9114B00600000D8B9 /* err_iokit.sub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = err_iokit.sub; sourceTree = "<group>"; };
		C9D9BCCA114B00600000D8B9 /* err_ipc.sub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = err_ipc.sub; sourceTree = "<group>"; };
		C9D9BCCB114B00600000D8B9 /* err_kern.sub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = err_kern.sub; sourceTree = "<group>"; };
		C9D9BCCC114B00600000D8B9 /* err_libkern.sub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = err_libkern.sub; sourceTree = "<group>"; };
		C9D9BCCD114B00600000D8B9 /* err_mach_ipc.sub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = err_mach_ipc.sub; sourceTree = "<group>"; };
		C9D9BCCE114B00600000D8B9 /* err_server.sub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = err_server.sub; sourceTree = "<group>"; };
		C9D9BCCF114B00600000D8B9 /* err_us.sub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = err_us.sub; sourceTree = "<group>"; };
		C9D9BCD0114B00600000D8B9 /* error_codes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = error_codes.c; sourceTree = "<group>"; };
		C9D9BCD1114B00600000D8B9 /* errorlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errorlib.h; sourceTree = "<group>"; };
		C9D9BCD2114B00600000D8B9 /* exc_catcher_state_identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exc_catcher_state_identity.c; sourceTree = "<group>"; };
		C9D9BCD3114B00600000D8B9 /* exc_catcher_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exc_catcher_state.c; sourceTree = "<group>"; };
		C9D9BCD4114B00600000D8B9 /* exc_catcher.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exc_catcher.c; sourceTree = "<group>"; };
		C9D9BCD5114B00600000D8B9 /* exc.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = exc.defs; sourceTree = "<group>"; };
		C9D9BCD6114B00600000D8B9 /* externs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = externs.h; sourceTree = "<group>"; };
		C9D9BCD7114B00600000D8B9 /* fprintf_stderr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fprintf_stderr.c; sourceTree = "<group>"; };
		C9D9BCD9114B00600000D8B9 /* errorlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errorlib.h; sourceTree = "<group>"; };
		C9D9BCDA114B00600000D8B9 /* mach.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach.h; sourceTree = "<group>"; };
		C9D9BCDB114B00600000D8B9 /* mach_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_error.h; sourceTree = "<group>"; };
		C9D9BCDC114B00600000D8B9 /* mach_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_init.h; sourceTree = "<group>"; };
		C9D9BCDD114B00600000D8B9 /* mach_interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_interface.h; sourceTree = "<group>"; };
		C9D9BCDF114B00600000D8B9 /* port_obj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_obj.h; sourceTree = "<group>"; };
		C9D9BCE0114B00600000D8B9 /* sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sync.h; sourceTree = "<group>"; };
		C9D9BCE1114B00600000D8B9 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
		C9D9BCE2114B00600000D8B9 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
		C9D9BCE3114B00600000D8B9 /* vm_task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_task.h; sourceTree = "<group>"; };
		C9D9BCE4114B00600000D8B9 /* host_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_priv.defs; sourceTree = "<group>"; };
		C9D9BCE5114B00600000D8B9 /* host_security.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_security.defs; sourceTree = "<group>"; };
		C9D9BCE9114B00600000D8B9 /* ledger.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = ledger.defs; sourceTree = "<group>"; };
		C9D9BCEA114B00600000D8B9 /* lock_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = lock_set.defs; sourceTree = "<group>"; };
		C9D9BCEB114B00600000D8B9 /* mach_error_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mach_error_string.c; sourceTree = "<group>"; };
		C9D9BCEC114B00600000D8B9 /* mach_error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mach_error.c; sourceTree = "<group>"; };
		C9D9BCED114B00600000D8B9 /* mach_host.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_host.defs; sourceTree = "<group>"; };
		C9D9BCF0114B00600000D8B9 /* mach_init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mach_init.c; sourceTree = "<group>"; };
		C9D9BCF1114B00600000D8B9 /* mach_msg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mach_msg.c; sourceTree = "<group>"; };
		C9D9BCF2114B00600000D8B9 /* mach_port.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_port.defs; sourceTree = "<group>"; };
		C9D9BCF3114B00600000D8B9 /* mach_traps.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = mach_traps.s; sourceTree = "<group>"; };
		C9D9BCF4114B00600000D8B9 /* mach_vm.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_vm.defs; sourceTree = "<group>"; };
		C9D9BCF6114B00600000D8B9 /* mig_allocate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mig_allocate.c; sourceTree = "<group>"; };
		C9D9BCF7114B00600000D8B9 /* mig_deallocate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mig_deallocate.c; sourceTree = "<group>"; };
		C9D9BCF8114B00600000D8B9 /* mig_reply_setup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mig_reply_setup.c; sourceTree = "<group>"; };
		C9D9BCF9114B00600000D8B9 /* mig_strncpy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mig_strncpy.c; sourceTree = "<group>"; };
		C9D9BCFA114B00600000D8B9 /* ms_thread_switch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ms_thread_switch.c; sourceTree = "<group>"; };
		C9D9BCFB114B00600000D8B9 /* notify.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = notify.defs; sourceTree = "<group>"; };
		C9D9BCFC114B00600000D8B9 /* panic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = panic.c; sourceTree = "<group>"; };
		C9D9BCFD114B00600000D8B9 /* port_obj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = port_obj.c; sourceTree = "<group>"; };
		C9D9BD03114B00600000D8B9 /* processor_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor_set.defs; sourceTree = "<group>"; };
		C9D9BD04114B00600000D8B9 /* processor.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor.defs; sourceTree = "<group>"; };
		C9D9BD06114B00600000D8B9 /* semaphore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = semaphore.c; sourceTree = "<group>"; };
		C9D9BD08114B00600000D8B9 /* key_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = key_defs.h; sourceTree = "<group>"; };
		C9D9BD09114B00600000D8B9 /* ls_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ls_defs.h; sourceTree = "<group>"; };
		C9D9BD0B114B00600000D8B9 /* netname.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = netname.defs; sourceTree = "<group>"; };
		C9D9BD0C114B00600000D8B9 /* netname_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = netname_defs.h; sourceTree = "<group>"; };
		C9D9BD0D114B00600000D8B9 /* nm_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nm_defs.h; sourceTree = "<group>"; };
		C9D9BD0E114B00600000D8B9 /* slot_name.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = slot_name.c; sourceTree = "<group>"; };
		C9D9BD0F114B00600000D8B9 /* task.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = task.defs; sourceTree = "<group>"; };
		C9D9BD10114B00600000D8B9 /* thread_act.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = thread_act.defs; sourceTree = "<group>"; };
		C9D9BD11114B00600000D8B9 /* vm_map.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = vm_map.defs; sourceTree = "<group>"; };
		C9D9BE0F114FFADC0000D8B9 /* Libsyscall.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Libsyscall.xcconfig; sourceTree = "<group>"; };
		D2AAC0630554660B00DB518D /* libsystem_kernel.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libsystem_kernel.a; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		249C60FD1194747600ED73F3 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				249C610B1194750E00ED73F3 /* libsystem_kernel.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D289988505E68E00004EDB86 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				24614F0411E7CB5B00E78584 /* syscalls.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		08FB7794FE84155DC02AAC07 /* mach */ = {
			isa = PBXGroup;
			children = (
				C9D9BE0F114FFADC0000D8B9 /* Libsyscall.xcconfig */,
				24D1158911E672270063D54D /* Platforms */,
				24D1156511E671B20063D54D /* custom */,
				08FB7795FE84155DC02AAC07 /* mach */,
				247A08B011F8AF1700E4693F /* wrappers */,
				240D716611933ED300556E97 /* xcodescripts */,
				1AB674ADFE9D54B511CA2CBB /* Products */,
			);
			name = mach;
			sourceTree = "<group>";
		};
		08FB7795FE84155DC02AAC07 /* mach */ = {
			isa = PBXGroup;
			children = (
				C9D9BCBE114B00600000D8B9 /* arm */,
				247A08FF11F8E18000E4693F /* abort.h */,
				C9D9BCC5114B00600000D8B9 /* clock_priv.defs */,
				C9D9BCC6114B00600000D8B9 /* clock_reply.defs */,
				C9D9BCC7114B00600000D8B9 /* clock_sleep.c */,
				C9D9BCC8114B00600000D8B9 /* clock.defs */,
				C9D9BCC9114B00600000D8B9 /* err_iokit.sub */,
				C9D9BCCA114B00600000D8B9 /* err_ipc.sub */,
				C9D9BCCB114B00600000D8B9 /* err_kern.sub */,
				C9D9BCCC114B00600000D8B9 /* err_libkern.sub */,
				C9D9BCCD114B00600000D8B9 /* err_mach_ipc.sub */,
				C9D9BCCE114B00600000D8B9 /* err_server.sub */,
				C9D9BCCF114B00600000D8B9 /* err_us.sub */,
				C9D9BCD0114B00600000D8B9 /* error_codes.c */,
				C9D9BCD1114B00600000D8B9 /* errorlib.h */,
				247A091611F8E7A800E4693F /* exc_catcher.h */,
				C9D9BCD2114B00600000D8B9 /* exc_catcher_state_identity.c */,
				C9D9BCD3114B00600000D8B9 /* exc_catcher_state.c */,
				C9D9BCD4114B00600000D8B9 /* exc_catcher.c */,
				C9D9BCD5114B00600000D8B9 /* exc.defs */,
				C9D9BCD6114B00600000D8B9 /* externs.h */,
				C9D9BCD7114B00600000D8B9 /* fprintf_stderr.c */,
				C9D9BCD8114B00600000D8B9 /* mach */,
				C9D9BCE4114B00600000D8B9 /* host_priv.defs */,
				C9D9BCE5114B00600000D8B9 /* host_security.defs */,
				C9D9BCE9114B00600000D8B9 /* ledger.defs */,
				C9D9BCEA114B00600000D8B9 /* lock_set.defs */,
				C9D9BCEB114B00600000D8B9 /* mach_error_string.c */,
				C9D9BCEC114B00600000D8B9 /* mach_error.c */,
				C9D9BCED114B00600000D8B9 /* mach_host.defs */,
				C9D9BCF0114B00600000D8B9 /* mach_init.c */,
				2485235411582D8F0051B413 /* mach_legacy.c */,
				C9D9BCF1114B00600000D8B9 /* mach_msg.c */,
				C9D9BCF2114B00600000D8B9 /* mach_port.defs */,
				C9D9BCF3114B00600000D8B9 /* mach_traps.s */,
				C9D9BCF4114B00600000D8B9 /* mach_vm.defs */,
				C9D9BCF6114B00600000D8B9 /* mig_allocate.c */,
				C9D9BCF7114B00600000D8B9 /* mig_deallocate.c */,
				C9D9BCF8114B00600000D8B9 /* mig_reply_setup.c */,
				C9D9BCF9114B00600000D8B9 /* mig_strncpy.c */,
				24484A9211F61D1900E10CD2 /* mig_reply_port.h */,
				24484A9311F61D1900E10CD2 /* mig_reply_port.c */,
				C9D9BCFA114B00600000D8B9 /* ms_thread_switch.c */,
				C9D9BCFB114B00600000D8B9 /* notify.defs */,
				C9D9BCFC114B00600000D8B9 /* panic.c */,
				C9D9BCFD114B00600000D8B9 /* port_obj.c */,
				C9D9BD03114B00600000D8B9 /* processor_set.defs */,
				C9D9BD04114B00600000D8B9 /* processor.defs */,
				C9D9BD06114B00600000D8B9 /* semaphore.c */,
				C9D9BD07114B00600000D8B9 /* servers */,
				C9D9BD0E114B00600000D8B9 /* slot_name.c */,
				24484A7311F51E9800E10CD2 /* string.h */,
				24484A7411F51E9800E10CD2 /* string.c */,
				C9D9BD0F114B00600000D8B9 /* task.defs */,
				C9D9BD10114B00600000D8B9 /* thread_act.defs */,
				C9D9BD11114B00600000D8B9 /* vm_map.defs */,
				249C612C1194827D00ED73F3 /* dylib_link.c */,
			);
			path = mach;
			sourceTree = "<group>";
		};
		1AB674ADFE9D54B511CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				24614F0311E7CB5B00E78584 /* syscalls.a */,
				D2AAC0630554660B00DB518D /* libsystem_kernel.a */,
				249C60FF1194747600ED73F3 /* libsystem_kernel.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		240D716611933ED300556E97 /* xcodescripts */ = {
			isa = PBXGroup;
			children = (
				24D1159911E6723E0063D54D /* create-syscalls.pl */,
				24614EA111E7A2ED00E78584 /* compile-syscalls.pl */,
				240D716711933ED300556E97 /* mach_install_mig.sh */,
				2427FA821200BCF800EF7A1F /* compat-symlinks.sh */,
			);
			path = xcodescripts;
			sourceTree = "<group>";
		};
		2419382912135FE1003CDE41 /* unix03 */ = {
			isa = PBXGroup;
			children = (
				2419382A12135FF6003CDE41 /* chmod.c */,
				248BA01E121C607E008C073F /* fchmod.c */,
				248BA068121D9E27008C073F /* getrlimit.c */,
				248BA086121DA72D008C073F /* mmap.c */,
				248BA0CC121DEBEF008C073F /* setrlimit.c */,
			);
			path = unix03;
			sourceTree = "<group>";
		};
		247A08B011F8AF1700E4693F /* wrappers */ = {
			isa = PBXGroup;
			children = (
				248BA04A121C8EE4008C073F /* cancelable */,
				2419382912135FE1003CDE41 /* unix03 */,
				24A7C6951200AF8A007669EB /* legacy */,
				C99A4F4E1305B1B70054B7B7 /* __get_cpu_capabilities.s */,
				247A08B211F8B05900E4693F /* _libkernel_init.h */,
				247A08B311F8B05900E4693F /* _libkernel_init.c */,
				24E47824120881DF009A384D /* _libc_funcptr.c */,
				24A7C5CB11FF973C007669EB /* _errno.h */,
				C99A4F511305B43F0054B7B7 /* init_cpu_capabilities.c */,
				248BA07F121DA36B008C073F /* ioctl.c */,
				248BA081121DA4F3008C073F /* kill.c */,
				24B028D511FF4FBB00CA64A9 /* memcpy.c */,
				24B8C2611237F53900D36CC3 /* remove-counter.c */,
				248AA966122C7CDA0085F5B1 /* rename.c */,
				248AA964122C7C330085F5B1 /* rmdir.c */,
				248BA090121DDD7F008C073F /* select-base.c */,
				24B223B3121DFF12007DAEDE /* sigsuspend-base.c */,
				248AA962122C7B2A0085F5B1 /* unlink.c */,
			);
			path = wrappers;
			sourceTree = "<group>";
		};
		248BA04A121C8EE4008C073F /* cancelable */ = {
			isa = PBXGroup;
			children = (
				248BA04B121C8EE4008C073F /* fcntl-base.c */,
				248BA04E121C8F06008C073F /* fcntl.c */,
				248BA051121C8FE2008C073F /* fcntl-cancel.c */,
				248BA0BC121DE902008C073F /* select.c */,
				248BA0B2121DE760008C073F /* select-cancel.c */,
				24B223AF121DFD36007DAEDE /* sigsuspend.c */,
				24B223B1121DFE6D007DAEDE /* sigsuspend-cancel.c */,
			);
			path = cancelable;
			sourceTree = "<group>";
		};
		24A7C6951200AF8A007669EB /* legacy */ = {
			isa = PBXGroup;
			children = (
				24A7C5AE11FF8DA6007669EB /* accept.c */,
				24A7C5AF11FF8DA6007669EB /* bind.c */,
				248BA01C121C56BF008C073F /* connect.c */,
				24A7C5B111FF8DA6007669EB /* getattrlist.c */,
				24A7C5B211FF8DA6007669EB /* getpeername.c */,
				24A7C5B311FF8DA6007669EB /* getsockname.c */,
				24A7C5B411FF8DA6007669EB /* lchown.c */,
				24A7C5B511FF8DA6007669EB /* listen.c */,
				248BA084121DA5E4008C073F /* kill.c */,
				248BA088121DA8E0008C073F /* mprotect.c */,
				248BA08A121DAC86008C073F /* msync.c */,
				248BA08C121DB0E7008C073F /* munmap.c */,
				248BA08E121DC545008C073F /* open.c */,
				24A7C5B611FF8DA6007669EB /* recvfrom.c */,
				24A7C5B711FF8DA6007669EB /* recvmsg.c */,
				248BA092121DE369008C073F /* select.c */,
				248BA094121DE565008C073F /* select-pre1050.c */,
				24A7C5B811FF8DA6007669EB /* sendmsg.c */,
				24A7C5B911FF8DA6007669EB /* sendto.c */,
				24A7C5BA11FF8DA6007669EB /* setattrlist.c */,
				24A7C5BB11FF8DA6007669EB /* socketpair.c */,
				24B223B4121DFF29007DAEDE /* sigsuspend.c */,
			);
			path = legacy;
			sourceTree = "<group>";
		};
		24D1156511E671B20063D54D /* custom */ = {
			isa = PBXGroup;
			children = (
				24D1156611E671B20063D54D /* __fork.s */,
				24D1156711E671B20063D54D /* __getpid.s */,
				24D1156811E671B20063D54D /* __gettimeofday.s */,
				24D1156911E671B20063D54D /* __lseek.s */,
				24D1156A11E671B20063D54D /* __pipe.s */,
				24D1156B11E671B20063D54D /* __psynch_cvbroad.s */,
				24D1156C11E671B20063D54D /* __psynch_cvwait.s */,
				24D1156D11E671B20063D54D /* __ptrace.s */,
				24D1156E11E671B20063D54D /* __sigaltstack.s */,
				24D1156F11E671B20063D54D /* __sigreturn.s */,
				24D1157011E671B20063D54D /* __syscall.s */,
				24D1157111E671B20063D54D /* __thread_selfid.s */,
				24D1157211E671B20063D54D /* __vfork.s */,
				24D1157311E671B20063D54D /* custom.s */,
				24D1157411E671B20063D54D /* SYS.h */,
				242AB66511EBDC1200107336 /* errno.c */,
			);
			path = custom;
			sourceTree = "<group>";
		};
		24D1158911E672270063D54D /* Platforms */ = {
			isa = PBXGroup;
			children = (
				24D1158A11E672270063D54D /* iPhoneOS */,
				24D1158D11E672270063D54D /* MacOSX */,
				24D1159811E672270063D54D /* syscall.map */,
			);
			path = Platforms;
			sourceTree = "<group>";
		};
		24D1158A11E672270063D54D /* iPhoneOS */ = {
			isa = PBXGroup;
			children = (
				24D1158B11E672270063D54D /* arm */,
			);
			path = iPhoneOS;
			sourceTree = "<group>";
		};
		24D1158B11E672270063D54D /* arm */ = {
			isa = PBXGroup;
			children = (
				24D1158C11E672270063D54D /* syscall.map */,
			);
			path = arm;
			sourceTree = "<group>";
		};
		24D1158D11E672270063D54D /* MacOSX */ = {
			isa = PBXGroup;
			children = (
				24D1158E11E672270063D54D /* arm */,
				24D1159011E672270063D54D /* i386 */,
				24D1159611E672270063D54D /* x86_64 */,
			);
			path = MacOSX;
			sourceTree = "<group>";
		};
		24D1158E11E672270063D54D /* arm */ = {
			isa = PBXGroup;
			children = (
				24D1158F11E672270063D54D /* syscall.map */,
			);
			path = arm;
			sourceTree = "<group>";
		};
		24D1159011E672270063D54D /* i386 */ = {
			isa = PBXGroup;
			children = (
				24D1159111E672270063D54D /* syscall.map */,
			);
			path = i386;
			sourceTree = "<group>";
		};
		24D1159611E672270063D54D /* x86_64 */ = {
			isa = PBXGroup;
			children = (
				24D1159711E672270063D54D /* syscall.map */,
			);
			path = x86_64;
			sourceTree = "<group>";
		};
		C9D9BCBE114B00600000D8B9 /* arm */ = {
			isa = PBXGroup;
			children = (
				C9D9BCBF114B00600000D8B9 /* .open_source_exclude */,
				C9D9BCC2114B00600000D8B9 /* vm_map_compat.c */,
			);
			path = arm;
			sourceTree = "<group>";
		};
		C9D9BCD8114B00600000D8B9 /* mach */ = {
			isa = PBXGroup;
			children = (
				C9D9BCD9114B00600000D8B9 /* errorlib.h */,
				C9D9BCDA114B00600000D8B9 /* mach.h */,
				C9D9BCDB114B00600000D8B9 /* mach_error.h */,
				C9D9BCDC114B00600000D8B9 /* mach_init.h */,
				C9D9BCDD114B00600000D8B9 /* mach_interface.h */,
				C9D9BCDF114B00600000D8B9 /* port_obj.h */,
				C9D9BCE0114B00600000D8B9 /* sync.h */,
				C9D9BCE1114B00600000D8B9 /* task.h */,
				C9D9BCE2114B00600000D8B9 /* thread_act.h */,
				C9D9BCE3114B00600000D8B9 /* vm_task.h */,
			);
			path = mach;
			sourceTree = "<group>";
		};
		C9D9BD07114B00600000D8B9 /* servers */ = {
			isa = PBXGroup;
			children = (
				C9D9BD08114B00600000D8B9 /* key_defs.h */,
				C9D9BD09114B00600000D8B9 /* ls_defs.h */,
				C9D9BD0B114B00600000D8B9 /* netname.defs */,
				C9D9BD0C114B00600000D8B9 /* netname_defs.h */,
				C9D9BD0D114B00600000D8B9 /* nm_defs.h */,
			);
			path = servers;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		D2AAC0600554660B00DB518D /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				C9D9BD1E114B00600000D8B9 /* errorlib.h in Headers */,
				C9D9BD23114B00600000D8B9 /* externs.h in Headers */,
				C9D9BD25114B00600000D8B9 /* errorlib.h in Headers */,
				C9D9BD26114B00600000D8B9 /* mach.h in Headers */,
				C9D9BD27114B00600000D8B9 /* mach_error.h in Headers */,
				C9D9BD28114B00600000D8B9 /* mach_init.h in Headers */,
				C9D9BD29114B00600000D8B9 /* mach_interface.h in Headers */,
				C9D9BD2B114B00600000D8B9 /* port_obj.h in Headers */,
				C9D9BD2C114B00600000D8B9 /* sync.h in Headers */,
				C9D9BD2D114B00600000D8B9 /* task.h in Headers */,
				C9D9BD2E114B00600000D8B9 /* thread_act.h in Headers */,
				C9D9BD2F114B00600000D8B9 /* vm_task.h in Headers */,
				C9D9BD50114B00600000D8B9 /* key_defs.h in Headers */,
				C9D9BD51114B00600000D8B9 /* ls_defs.h in Headers */,
				C9D9BD54114B00600000D8B9 /* netname_defs.h in Headers */,
				C9D9BD55114B00600000D8B9 /* nm_defs.h in Headers */,
				24D1158311E671B20063D54D /* SYS.h in Headers */,
				247A090011F8E18000E4693F /* abort.h in Headers */,
				247A091711F8E7A800E4693F /* exc_catcher.h in Headers */,
				24B028F511FF5C3500CA64A9 /* _libkernel_init.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		249C60FE1194747600ED73F3 /* Libmach Dynamic */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 249C6102119474D700ED73F3 /* Build configuration list for PBXNativeTarget "Libmach Dynamic" */;
			buildPhases = (
				249C61281194815000ED73F3 /* Sources */,
				249C60FD1194747600ED73F3 /* Frameworks */,
				2427FA811200BCDA00EF7A1F /* Compat Symlinks */,
			);
			buildRules = (
			);
			dependencies = (
				249C610A1194750700ED73F3 /* PBXTargetDependency */,
			);
			name = "Libmach Dynamic";
			productName = Libmach;
			productReference = 249C60FF1194747600ED73F3 /* libsystem_kernel.dylib */;
			productType = "com.apple.product-type.library.dynamic";
		};
		D2AAC0620554660B00DB518D /* Libmach */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "Libmach" */;
			buildPhases = (
				D2AAC0600554660B00DB518D /* Headers */,
				D2AAC0610554660B00DB518D /* Sources */,
				D289988505E68E00004EDB86 /* Frameworks */,
				2487545E11629934000975E0 /* Install Headers */,
			);
			buildRules = (
			);
			dependencies = (
				242AB67911ED03ED00107336 /* PBXTargetDependency */,
			);
			name = Libmach;
			productName = mach;
			productReference = D2AAC0630554660B00DB518D /* libsystem_kernel.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		08FB7793FE84155DC02AAC07 /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = 1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "Libsyscall" */;
			compatibilityVersion = "Xcode 3.1";
			developmentRegion = English;
			hasScannedForEncodings = 1;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
			);
			mainGroup = 08FB7794FE84155DC02AAC07 /* mach */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				249C61101194755D00ED73F3 /* Build */,
				24614EF311E7C98600E78584 /* Syscalls */,
				D2AAC0620554660B00DB518D /* Libmach */,
				249C60FE1194747600ED73F3 /* Libmach Dynamic */,
			);
		};
/* End PBXProject section */

/* Begin PBXShellScriptBuildPhase section */
		2427FA811200BCDA00EF7A1F /* Compat Symlinks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 8;
			files = (
			);
			inputPaths = (
			);
			name = "Compat Symlinks";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 1;
			shellPath = /bin/sh;
			shellScript = "\"$PROJECT_DIR\"/xcodescripts/compat-symlinks.sh";
		};
		24614EF211E7C98600E78584 /* Generate Syscalls */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Generate Syscalls";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "set -x\n\nmkdir -p $OBJROOT/sys\n\n$SRCROOT/xcodescripts/create-syscalls.pl \\\n\t$SRCROOT/../bsd/kern/syscalls.master \\\n\t$SRCROOT/custom \\\n\t$SRCROOT/Platforms \\\n\t$MAP_PLATFORM \\\n\t$OBJROOT/sys\n";
		};
		24614EF611E7C9A000E78584 /* Compile Syscalls */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Compile Syscalls";
			outputPaths = (
				"$(BUILD_ROOT)/syscalls.a",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "set -x\n\nmkdir -p $OBJROOT/UninstalledProducts\n\n$SRCROOT/xcodescripts/compile-syscalls.pl \\\n\t$OBJROOT/sys/stubs.list \\\n\t$BUILD_ROOT/syscalls.a";
		};
		2487545E11629934000975E0 /* Install Headers */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Install Headers";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"$PROJECT_DIR\"/xcodescripts/mach_install_mig.sh";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		249C61281194815000ED73F3 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				24E4782712088267009A384D /* _libc_funcptr.c in Sources */,
				240BAC4C1214770F000A1719 /* memcpy.c in Sources */,
				249C612F1194828600ED73F3 /* dylib_link.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2AAC0610554660B00DB518D /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				C9D9BD19114B00600000D8B9 /* clock_priv.defs in Sources */,
				C9D9BD1A114B00600000D8B9 /* clock_reply.defs in Sources */,
				C9D9BD1C114B00600000D8B9 /* clock.defs in Sources */,
				C9D9BD22114B00600000D8B9 /* exc.defs in Sources */,
				C9D9BD30114B00600000D8B9 /* host_priv.defs in Sources */,
				C9D9BD31114B00600000D8B9 /* host_security.defs in Sources */,
				C9D9BD34114B00600000D8B9 /* ledger.defs in Sources */,
				C9D9BD35114B00600000D8B9 /* lock_set.defs in Sources */,
				C9D9BD38114B00600000D8B9 /* mach_host.defs in Sources */,
				C9D9BD3D114B00600000D8B9 /* mach_port.defs in Sources */,
				C9D9BD3F114B00600000D8B9 /* mach_vm.defs in Sources */,
				C9D9BD46114B00600000D8B9 /* notify.defs in Sources */,
				C9D9BD4C114B00600000D8B9 /* processor_set.defs in Sources */,
				C9D9BD4D114B00600000D8B9 /* processor.defs in Sources */,
				C9D9BD53114B00600000D8B9 /* netname.defs in Sources */,
				C9D9BD57114B00600000D8B9 /* task.defs in Sources */,
				C9D9BD58114B00600000D8B9 /* thread_act.defs in Sources */,
				C9D9BD59114B00600000D8B9 /* vm_map.defs in Sources */,
				C9D9BD1B114B00600000D8B9 /* clock_sleep.c in Sources */,
				C9D9BD1D114B00600000D8B9 /* error_codes.c in Sources */,
				C9D9BD1F114B00600000D8B9 /* exc_catcher_state_identity.c in Sources */,
				C9D9BD20114B00600000D8B9 /* exc_catcher_state.c in Sources */,
				C9D9BD21114B00600000D8B9 /* exc_catcher.c in Sources */,
				C9D9BD24114B00600000D8B9 /* fprintf_stderr.c in Sources */,
				C9D9BD36114B00600000D8B9 /* mach_error_string.c in Sources */,
				C9D9BD37114B00600000D8B9 /* mach_error.c in Sources */,
				C9D9BD3B114B00600000D8B9 /* mach_init.c in Sources */,
				C9D9BD3C114B00600000D8B9 /* mach_msg.c in Sources */,
				C9D9BD3E114B00600000D8B9 /* mach_traps.s in Sources */,
				C9D9BD41114B00600000D8B9 /* mig_allocate.c in Sources */,
				C9D9BD42114B00600000D8B9 /* mig_deallocate.c in Sources */,
				C9D9BD43114B00600000D8B9 /* mig_reply_setup.c in Sources */,
				24484A9411F61D2B00E10CD2 /* mig_reply_port.c in Sources */,
				C9D9BD44114B00600000D8B9 /* mig_strncpy.c in Sources */,
				C9D9BD45114B00600000D8B9 /* ms_thread_switch.c in Sources */,
				C9D9BD47114B00600000D8B9 /* panic.c in Sources */,
				C9D9BD48114B00600000D8B9 /* port_obj.c in Sources */,
				C9D9BD4F114B00600000D8B9 /* semaphore.c in Sources */,
				C9D9BD56114B00600000D8B9 /* slot_name.c in Sources */,
				24484A7511F6178E00E10CD2 /* string.c in Sources */,
				2485235511582D8F0051B413 /* mach_legacy.c in Sources */,
				C9D9BD17114B00600000D8B9 /* vm_map_compat.c in Sources */,
				242AB66611EBDC1200107336 /* errno.c in Sources */,
				247A08C211F8BDC900E4693F /* _libkernel_init.c in Sources */,
				24A7C5BC11FF8DA6007669EB /* accept.c in Sources */,
				24A7C5BD11FF8DA6007669EB /* bind.c in Sources */,
				24A7C5BF11FF8DA6007669EB /* getattrlist.c in Sources */,
				24A7C5C011FF8DA6007669EB /* getpeername.c in Sources */,
				24A7C5C111FF8DA6007669EB /* getsockname.c in Sources */,
				24A7C5C211FF8DA6007669EB /* lchown.c in Sources */,
				24A7C5C311FF8DA6007669EB /* listen.c in Sources */,
				24A7C5C411FF8DA6007669EB /* recvfrom.c in Sources */,
				24A7C5C511FF8DA6007669EB /* recvmsg.c in Sources */,
				24A7C5C611FF8DA6007669EB /* sendmsg.c in Sources */,
				24A7C5C711FF8DA6007669EB /* sendto.c in Sources */,
				24A7C5C811FF8DA6007669EB /* setattrlist.c in Sources */,
				24A7C5C911FF8DA6007669EB /* socketpair.c in Sources */,
				2419382B12135FF6003CDE41 /* chmod.c in Sources */,
				248BA01D121C56BF008C073F /* connect.c in Sources */,
				248BA01F121C607E008C073F /* fchmod.c in Sources */,
				248BA04F121C8F06008C073F /* fcntl.c in Sources */,
				248BA05C121C9649008C073F /* fcntl-cancel.c in Sources */,
				248BA069121D9E27008C073F /* getrlimit.c in Sources */,
				248BA080121DA36B008C073F /* ioctl.c in Sources */,
				248BA082121DA4F3008C073F /* kill.c in Sources */,
				248BA085121DA5E4008C073F /* kill.c in Sources */,
				248BA087121DA72D008C073F /* mmap.c in Sources */,
				248BA089121DA8E0008C073F /* mprotect.c in Sources */,
				248BA08B121DAC86008C073F /* msync.c in Sources */,
				248BA08D121DB0E7008C073F /* munmap.c in Sources */,
				248BA08F121DC545008C073F /* open.c in Sources */,
				248BA093121DE369008C073F /* select.c in Sources */,
				248BA095121DE565008C073F /* select-pre1050.c in Sources */,
				248BA0B3121DE760008C073F /* select-cancel.c in Sources */,
				248BA0BE121DE902008C073F /* select.c in Sources */,
				248BA0CD121DEBEF008C073F /* setrlimit.c in Sources */,
				24B223B0121DFD36007DAEDE /* sigsuspend.c in Sources */,
				24B223B2121DFE6D007DAEDE /* sigsuspend-cancel.c in Sources */,
				24B223B5121DFF29007DAEDE /* sigsuspend.c in Sources */,
				248AA963122C7B2A0085F5B1 /* unlink.c in Sources */,
				248AA965122C7C330085F5B1 /* rmdir.c in Sources */,
				248AA967122C7CDA0085F5B1 /* rename.c in Sources */,
				24B8C2621237F53900D36CC3 /* remove-counter.c in Sources */,
				C99A4F501305B2BD0054B7B7 /* __get_cpu_capabilities.s in Sources */,
				C99A4F531305B43F0054B7B7 /* init_cpu_capabilities.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		242AB67911ED03ED00107336 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 24614EF311E7C98600E78584 /* Syscalls */;
			targetProxy = 242AB67811ED03ED00107336 /* PBXContainerItemProxy */;
		};
		249C610A1194750700ED73F3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = D2AAC0620554660B00DB518D /* Libmach */;
			targetProxy = 249C61091194750700ED73F3 /* PBXContainerItemProxy */;
		};
		249C61151194756A00ED73F3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 249C60FE1194747600ED73F3 /* Libmach Dynamic */;
			targetProxy = 249C61141194756A00ED73F3 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		1DEB914C08733D8E0010E9CD /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = C9D9BE0F114FFADC0000D8B9 /* Libsyscall.xcconfig */;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				INSTALL_PATH = /usr/local/lib/dyld;
				"INSTALL_PATH[sdk=iphoneos*]" = /usr/local/lib/dyld;
				"INSTALL_PATH[sdk=iphonesimulator*]" = "$(SDKROOT)/usr/local/lib/dyld";
				"INSTALL_PATH[sdk=macosx*]" = /usr/local/lib/dyld;
			};
			name = Release;
		};
		1DEB915008733D8E0010E9CD /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				PREBINDING = NO;
			};
			name = Release;
		};
		24614EF411E7C98600E78584 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				MAP_PLATFORM = "$(MAP_PLATFORM_$(PLATFORM_NAME))";
				MAP_PLATFORM_iphoneos = iPhoneOS;
				MAP_PLATFORM_macosx = MacOSX;
				PRODUCT_NAME = Syscalls;
				ZERO_LINK = NO;
			};
			name = Release;
		};
		249C61001194747600ED73F3 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = C9D9BE0F114FFADC0000D8B9 /* Libsyscall.xcconfig */;
			buildSettings = {
				OTHER_LDFLAGS = (
					"-umbrella",
					System,
					"-all_load",
				);
				VERSION_INFO_PREFIX = "___";
			};
			name = Release;
		};
		249C61111194755E00ED73F3 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = C9D9BE0F114FFADC0000D8B9 /* Libsyscall.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = Build;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "Libmach" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1DEB914C08733D8E0010E9CD /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "Libsyscall" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1DEB915008733D8E0010E9CD /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		24614EFD11E7C9B900E78584 /* Build configuration list for PBXAggregateTarget "Syscalls" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				24614EF411E7C98600E78584 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		249C6102119474D700ED73F3 /* Build configuration list for PBXNativeTarget "Libmach Dynamic" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				249C61001194747600ED73F3 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		249C61191194756B00ED73F3 /* Build configuration list for PBXAggregateTarget "Build" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				249C61111194755E00ED73F3 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}