├── .clang-format ├── .gitignore ├── .travis.yml ├── CITATION.cff ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile ├── README.md ├── artifacts.tar ├── cloudlab.profile ├── data_example ├── AMD-EPYC-7281-tinker-2 │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── AMD-EPYC-7302P-cloudlab │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── AMD-Opteron-4122-r415 │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── AMD-Ryzen-3600x-desktop │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── Intel-XEON-Gold-6126-chameleon │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── Intel-XEON-Gold-6142-cloudlab │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── Intel-i7-10750H-XPS-9500 │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── enclave-create.csv │ │ │ ├── enclave-ecall.csv │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── Intel-i7-6600U-thinkpad-p40-yoga │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── README.md ├── VIRT-Intel-XEON-E5-2670-nested │ ├── data │ │ ├── cpuinfo │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig13 │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── openssl.txt │ │ ├── table1.csv │ │ └── uname │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ └── fig8.pdf ├── gen.sh ├── gold │ ├── data │ │ ├── fig11 │ │ │ ├── baseline_0.csv │ │ │ ├── baseline_10.csv │ │ │ ├── baseline_15.csv │ │ │ ├── baseline_20.csv │ │ │ ├── baseline_25.csv │ │ │ ├── baseline_30.csv │ │ │ ├── baseline_5.csv │ │ │ ├── virtine+snapshot_0.csv │ │ │ ├── virtine+snapshot_10.csv │ │ │ ├── virtine+snapshot_15.csv │ │ │ ├── virtine+snapshot_20.csv │ │ │ ├── virtine+snapshot_25.csv │ │ │ ├── virtine+snapshot_30.csv │ │ │ ├── virtine+snapshot_5.csv │ │ │ ├── virtine_0.csv │ │ │ ├── virtine_10.csv │ │ │ ├── virtine_15.csv │ │ │ ├── virtine_20.csv │ │ │ ├── virtine_25.csv │ │ │ ├── virtine_30.csv │ │ │ └── virtine_5.csv │ │ ├── fig12 │ │ │ └── image_size.csv │ │ ├── fig14 │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ ├── virtine_noteardown.csv │ │ │ ├── virtine_snapshot.csv │ │ │ └── virtine_snapshot_noteardown.csv │ │ ├── fig3 │ │ │ ├── fib16.csv │ │ │ ├── fib32.csv │ │ │ └── fib64.csv │ │ ├── fig4 │ │ │ └── echo-server.csv │ │ ├── fig8 │ │ │ ├── README.md │ │ │ ├── func_latency │ │ │ │ ├── Makefile │ │ │ │ ├── func │ │ │ │ ├── func.cpp │ │ │ │ ├── func_abstraction.csv │ │ │ │ ├── func_rdtsc.csv │ │ │ │ ├── proc │ │ │ │ ├── proc.cpp │ │ │ │ ├── process_abstraction.csv │ │ │ │ ├── process_rdtsc.csv │ │ │ │ ├── thread │ │ │ │ ├── thread.cpp │ │ │ │ ├── thread_abstraction.csv │ │ │ │ ├── time.h │ │ │ │ ├── vm_abstraction.csv │ │ │ │ └── vm_rdtsc_reuse.csv │ │ │ ├── func_latency_baremetal │ │ │ │ ├── Makefile │ │ │ │ ├── func │ │ │ │ ├── func.cpp │ │ │ │ ├── hypervisor_abstraction.csv │ │ │ │ ├── hypervisor_pool_abstraction.csv │ │ │ │ ├── hypervisor_vmrun_abstraction.csv │ │ │ │ ├── proc │ │ │ │ ├── proc.cpp │ │ │ │ ├── runtests.sh │ │ │ │ ├── thread │ │ │ │ ├── thread.cpp │ │ │ │ ├── time.h │ │ │ │ ├── trial │ │ │ │ ├── triall │ │ │ │ └── trual │ │ │ ├── function_call.csv │ │ │ ├── hyperv.csv │ │ │ ├── linux_process.csv │ │ │ ├── linux_thread.csv │ │ │ ├── thread.csv │ │ │ ├── vm_cold.csv │ │ │ ├── vm_warm.csv │ │ │ ├── vmrun.csv │ │ │ ├── wasp_create.csv │ │ │ ├── wasp_create_cache.csv │ │ │ ├── wasp_create_cache_async.csv │ │ │ └── wasp_vmrun.csv │ │ ├── http │ │ │ ├── http_baseline_lat.csv │ │ │ ├── http_baseline_thru.csv │ │ │ ├── http_virtine_lat.csv │ │ │ ├── http_virtine_snapshot_lat.csv │ │ │ ├── http_virtine_snapshot_thru.csv │ │ │ └── http_virtine_thru.csv │ │ ├── kernel-latency │ │ │ ├── reset.csv │ │ │ └── scratch.csv │ │ └── openssl │ │ │ ├── baseline.csv │ │ │ ├── virtine.csv │ │ │ └── virtine_snapshot.csv │ ├── fig11.pdf │ ├── fig12.pdf │ ├── fig13_lat.pdf │ ├── fig13_tput.pdf │ ├── fig14.pdf │ ├── fig3.pdf │ ├── fig4.pdf │ ├── fig8.pdf │ └── table1.csv └── replot.sh ├── include ├── virtine.h └── wasp │ ├── Cache.h │ ├── Virtine.h │ ├── binding.h │ └── util.h ├── libc ├── .drone.yml ├── .gitattributes ├── .gitignore ├── COPYING ├── COPYING.LIB ├── COPYING.LIBGLOSS ├── COPYING.NEWLIB ├── COPYING3 ├── COPYING3.LIB ├── ChangeLog ├── MAINTAINERS ├── Makefile.def ├── Makefile.in ├── Makefile.tpl ├── README ├── README-maintainer-mode ├── README.nautilus.md ├── compile ├── config-ml.in ├── config.guess ├── config.rpath ├── config.sub ├── config │ ├── ChangeLog │ ├── acinclude.m4 │ ├── acx.m4 │ ├── asmcfi.m4 │ ├── bitfields.m4 │ ├── bootstrap-O1.mk │ ├── bootstrap-O3.mk │ ├── bootstrap-asan.mk │ ├── bootstrap-debug-big.mk │ ├── bootstrap-debug-ckovw.mk │ ├── bootstrap-debug-lean.mk │ ├── bootstrap-debug-lib.mk │ ├── bootstrap-debug.mk │ ├── bootstrap-lto-noplugin.mk │ ├── bootstrap-lto.mk │ ├── bootstrap-mpx.mk │ ├── bootstrap-time.mk │ ├── bootstrap-ubsan.mk │ ├── cloog.m4 │ ├── codeset.m4 │ ├── depstand.m4 │ ├── dfp.m4 │ ├── elf.m4 │ ├── enable.m4 │ ├── extensions.m4 │ ├── futex.m4 │ ├── gc++filt.m4 │ ├── gcc-plugin.m4 │ ├── gettext-sister.m4 │ ├── gettext.m4 │ ├── glibc21.m4 │ ├── gthr.m4 │ ├── gxx-include-dir.m4 │ ├── iconv.m4 │ ├── intdiv0.m4 │ ├── inttypes-pri.m4 │ ├── inttypes.m4 │ ├── inttypes_h.m4 │ ├── isl.m4 │ ├── largefile.m4 │ ├── lcmessage.m4 │ ├── ld-symbolic.m4 │ ├── lead-dot.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── libstdc++-raw-cxx.m4 │ ├── lthostflags.m4 │ ├── math.m4 │ ├── mh-alpha-linux │ ├── mh-cygwin │ ├── mh-darwin │ ├── mh-djgpp │ ├── mh-mingw │ ├── mh-pa │ ├── mh-pa-hpux10 │ ├── mh-ppc-aix │ ├── mmap.m4 │ ├── mt-alphaieee │ ├── mt-d30v │ ├── mt-gnu │ ├── mt-mips-elfoabi │ ├── mt-mips-gnu │ ├── mt-mips16-compat │ ├── mt-nios2-elf │ ├── mt-ospace │ ├── mt-sde │ ├── mt-spu │ ├── multi.m4 │ ├── nls.m4 │ ├── no-executables.m4 │ ├── override.m4 │ ├── picflag.m4 │ ├── plugins.m4 │ ├── po.m4 │ ├── proginstall.m4 │ ├── progtest.m4 │ ├── sjlj.m4 │ ├── stdint.m4 │ ├── stdint_h.m4 │ ├── target-posix │ ├── tcl.m4 │ ├── tls.m4 │ ├── uintmax_t.m4 │ ├── ulonglong.m4 │ ├── unwind_ipinfo.m4 │ ├── warnings.m4 │ ├── weakref.m4 │ └── zlib.m4 ├── configure ├── configure.ac ├── depcomp ├── djunpack.bat ├── etc │ ├── ChangeLog │ ├── Makefile.in │ ├── add-log.el │ ├── add-log.vi │ ├── configure │ ├── configure.in │ └── texi2pod.pl ├── include │ ├── COPYING │ ├── COPYING3 │ ├── ChangeLog │ ├── ChangeLog-9103 │ ├── ChangeLog.jit │ ├── MAINTAINERS │ ├── alloca-conf.h │ ├── ansidecl.h │ ├── aout │ │ ├── ChangeLog │ │ ├── adobe.h │ │ ├── aout64.h │ │ ├── ar.h │ │ ├── dynix3.h │ │ ├── encap.h │ │ ├── host.h │ │ ├── hp.h │ │ ├── hp300hpux.h │ │ ├── hppa.h │ │ ├── ranlib.h │ │ ├── reloc.h │ │ ├── stab.def │ │ ├── stab_gnu.h │ │ └── sun4.h │ ├── bfdlink.h │ ├── binary-io.h │ ├── bout.h │ ├── cgen │ │ ├── ChangeLog │ │ ├── basic-modes.h │ │ ├── basic-ops.h │ │ └── bitset.h │ ├── coff │ │ ├── ChangeLog │ │ ├── ChangeLog-9103 │ │ ├── alpha.h │ │ ├── apollo.h │ │ ├── arm.h │ │ ├── aux-coff.h │ │ ├── ecoff.h │ │ ├── external.h │ │ ├── go32exe.h │ │ ├── h8300.h │ │ ├── h8500.h │ │ ├── i386.h │ │ ├── i860.h │ │ ├── i960.h │ │ ├── ia64.h │ │ ├── internal.h │ │ ├── m68k.h │ │ ├── m88k.h │ │ ├── mcore.h │ │ ├── mips.h │ │ ├── mipspe.h │ │ ├── or32.h │ │ ├── pe.h │ │ ├── powerpc.h │ │ ├── rs6000.h │ │ ├── rs6k64.h │ │ ├── sh.h │ │ ├── sparc.h │ │ ├── sym.h │ │ ├── symconst.h │ │ ├── ti.h │ │ ├── tic30.h │ │ ├── tic4x.h │ │ ├── tic54x.h │ │ ├── tic80.h │ │ ├── w65.h │ │ ├── we32k.h │ │ ├── x86_64.h │ │ ├── xcoff.h │ │ ├── z80.h │ │ └── z8k.h │ ├── demangle.h │ ├── dis-asm.h │ ├── dwarf2.def │ ├── dwarf2.h │ ├── dyn-string.h │ ├── elf │ │ ├── ChangeLog │ │ ├── ChangeLog-9103 │ │ ├── aarch64.h │ │ ├── alpha.h │ │ ├── arc.h │ │ ├── arm.h │ │ ├── avr.h │ │ ├── bfin.h │ │ ├── common.h │ │ ├── cr16.h │ │ ├── cr16c.h │ │ ├── cris.h │ │ ├── crx.h │ │ ├── d10v.h │ │ ├── d30v.h │ │ ├── dlx.h │ │ ├── dwarf.h │ │ ├── epiphany.h │ │ ├── external.h │ │ ├── fr30.h │ │ ├── frv.h │ │ ├── h8.h │ │ ├── hppa.h │ │ ├── i370.h │ │ ├── i386.h │ │ ├── i860.h │ │ ├── i960.h │ │ ├── ia64.h │ │ ├── internal.h │ │ ├── ip2k.h │ │ ├── iq2000.h │ │ ├── lm32.h │ │ ├── m32c.h │ │ ├── m32r.h │ │ ├── m68hc11.h │ │ ├── m68k.h │ │ ├── mcore.h │ │ ├── mep.h │ │ ├── metag.h │ │ ├── microblaze.h │ │ ├── mips.h │ │ ├── mmix.h │ │ ├── mn10200.h │ │ ├── mn10300.h │ │ ├── moxie.h │ │ ├── msp430.h │ │ ├── mt.h │ │ ├── nios2.h │ │ ├── openrisc.h │ │ ├── or32.h │ │ ├── pj.h │ │ ├── ppc.h │ │ ├── ppc64.h │ │ ├── reloc-macros.h │ │ ├── rl78.h │ │ ├── rx.h │ │ ├── s390.h │ │ ├── score.h │ │ ├── sh.h │ │ ├── sparc.h │ │ ├── spu.h │ │ ├── tic6x-attrs.h │ │ ├── tic6x.h │ │ ├── tilegx.h │ │ ├── tilepro.h │ │ ├── v850.h │ │ ├── vax.h │ │ ├── vxworks.h │ │ ├── x86-64.h │ │ ├── xc16x.h │ │ ├── xgate.h │ │ ├── xstormy16.h │ │ └── xtensa.h │ ├── environ.h │ ├── fibheap.h │ ├── filenames.h │ ├── floatformat.h │ ├── fnmatch.h │ ├── fopen-bin.h │ ├── fopen-same.h │ ├── fopen-vms.h │ ├── gcc-c-fe.def │ ├── gcc-c-interface.h │ ├── gcc-interface.h │ ├── gdb │ │ ├── ChangeLog │ │ ├── callback.h │ │ ├── fileio.h │ │ ├── gdb-index.h │ │ ├── remote-sim.h │ │ ├── signals.def │ │ ├── signals.h │ │ ├── sim-arm.h │ │ ├── sim-bfin.h │ │ ├── sim-cr16.h │ │ ├── sim-d10v.h │ │ ├── sim-frv.h │ │ ├── sim-h8300.h │ │ ├── sim-lm32.h │ │ ├── sim-m32c.h │ │ ├── sim-ppc.h │ │ ├── sim-rl78.h │ │ ├── sim-rx.h │ │ └── sim-sh.h │ ├── gdbm.h │ ├── getopt.h │ ├── gomp-constants.h │ ├── hashtab.h │ ├── hp-symtab.h │ ├── ieee.h │ ├── leb128.h │ ├── libiberty.h │ ├── longlong.h │ ├── lto-symtab.h │ ├── mach-o │ │ ├── ChangeLog │ │ ├── arm.h │ │ ├── codesign.h │ │ ├── external.h │ │ ├── loader.h │ │ ├── reloc.h │ │ └── x86-64.h │ ├── md5.h │ ├── nlm │ │ ├── ChangeLog │ │ ├── alpha-ext.h │ │ ├── common.h │ │ ├── external.h │ │ ├── i386-ext.h │ │ ├── internal.h │ │ ├── ppc-ext.h │ │ └── sparc32-ext.h │ ├── oasys.h │ ├── objalloc.h │ ├── obstack.h │ ├── opcode │ │ ├── ChangeLog │ │ ├── ChangeLog-9103 │ │ ├── aarch64.h │ │ ├── alpha.h │ │ ├── arc.h │ │ ├── arm.h │ │ ├── avr.h │ │ ├── bfin.h │ │ ├── cgen.h │ │ ├── convex.h │ │ ├── cr16.h │ │ ├── cris.h │ │ ├── crx.h │ │ ├── d10v.h │ │ ├── d30v.h │ │ ├── dlx.h │ │ ├── h8300.h │ │ ├── hppa.h │ │ ├── i370.h │ │ ├── i386.h │ │ ├── i860.h │ │ ├── i960.h │ │ ├── ia64.h │ │ ├── m68hc11.h │ │ ├── m68k.h │ │ ├── m88k.h │ │ ├── metag.h │ │ ├── mips.h │ │ ├── mmix.h │ │ ├── mn10200.h │ │ ├── mn10300.h │ │ ├── moxie.h │ │ ├── msp430-decode.h │ │ ├── msp430.h │ │ ├── nios2.h │ │ ├── np1.h │ │ ├── ns32k.h │ │ ├── or32.h │ │ ├── pdp11.h │ │ ├── pj.h │ │ ├── pn.h │ │ ├── ppc.h │ │ ├── pyr.h │ │ ├── rl78.h │ │ ├── rx.h │ │ ├── s390.h │ │ ├── score-datadep.h │ │ ├── score-inst.h │ │ ├── sparc.h │ │ ├── spu-insns.h │ │ ├── spu.h │ │ ├── tahoe.h │ │ ├── tic30.h │ │ ├── tic4x.h │ │ ├── tic54x.h │ │ ├── tic6x-control-registers.h │ │ ├── tic6x-insn-formats.h │ │ ├── tic6x-opcode-table.h │ │ ├── tic6x.h │ │ ├── tic80.h │ │ ├── tilegx.h │ │ ├── tilepro.h │ │ ├── v850.h │ │ ├── vax.h │ │ └── xgate.h │ ├── os9k.h │ ├── partition.h │ ├── plugin-api.h │ ├── progress.h │ ├── safe-ctype.h │ ├── sha1.h │ ├── simple-object.h │ ├── som │ │ ├── ChangeLog │ │ ├── aout.h │ │ ├── clock.h │ │ ├── internal.h │ │ ├── lst.h │ │ └── reloc.h │ ├── sort.h │ ├── splay-tree.h │ ├── symcat.h │ ├── timeval-utils.h │ ├── vms │ │ ├── ChangeLog │ │ ├── dcx.h │ │ ├── dmt.h │ │ ├── dsc.h │ │ ├── dst.h │ │ ├── eeom.h │ │ ├── egps.h │ │ ├── egsd.h │ │ ├── egst.h │ │ ├── egsy.h │ │ ├── eiaf.h │ │ ├── eicp.h │ │ ├── eidc.h │ │ ├── eiha.h │ │ ├── eihd.h │ │ ├── eihi.h │ │ ├── eihs.h │ │ ├── eihvn.h │ │ ├── eisd.h │ │ ├── emh.h │ │ ├── eobjrec.h │ │ ├── esdf.h │ │ ├── esdfm.h │ │ ├── esdfv.h │ │ ├── esgps.h │ │ ├── esrf.h │ │ ├── etir.h │ │ ├── internal.h │ │ ├── lbr.h │ │ ├── prt.h │ │ └── shl.h │ ├── vtv-change-permission.h │ ├── xregex.h │ ├── xregex2.h │ ├── xtensa-config.h │ ├── xtensa-isa-internal.h │ └── xtensa-isa.h ├── install-sh ├── libgloss │ ├── ChangeLog │ ├── ChangeLog-2015 │ ├── Makefile.in │ ├── README │ ├── aarch64 │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── _kill.c │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── cpu-init │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── rdimon-aem-el3.S │ │ ├── crt0.S │ │ ├── elf-aem-validation.specs │ │ ├── elf-aem-ve.specs │ │ ├── elf-rdimon.specs │ │ ├── ftruncate.c │ │ ├── libcfunc.c │ │ ├── svc.h │ │ ├── syscalls.c │ │ └── truncate.c │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── arc │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── gcrt0.S │ │ ├── libcfunc.c │ │ ├── mcount.c │ │ ├── nano.specs │ │ ├── nsim-syscall.h │ │ ├── nsim-syscalls.c │ │ ├── nsim.specs │ │ └── sbrk.c │ ├── arm │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── _kill.c │ │ ├── aclocal.m4 │ │ ├── arm.h │ │ ├── coff-iq80310.specs │ │ ├── coff-pid.specs │ │ ├── coff-rdimon-v2m.specs │ │ ├── coff-rdimon.specs │ │ ├── coff-rdpmon.specs │ │ ├── coff-redboot.ld │ │ ├── coff-redboot.specs │ │ ├── configure │ │ ├── configure.in │ │ ├── cpu-init │ │ │ ├── Makefile.in │ │ │ └── rdimon-aem.S │ │ ├── crt0.S │ │ ├── elf-aprofile-validation-v2m.specs │ │ ├── elf-aprofile-validation.specs │ │ ├── elf-aprofile-ve-v2m.specs │ │ ├── elf-aprofile-ve.specs │ │ ├── elf-iq80310.specs │ │ ├── elf-linux.specs │ │ ├── elf-nano.specs │ │ ├── elf-pid.specs │ │ ├── elf-rdimon-v2m.specs │ │ ├── elf-rdimon.specs │ │ ├── elf-rdpmon.specs │ │ ├── elf-redboot.ld │ │ ├── elf-redboot.specs │ │ ├── ftruncate.c │ │ ├── libcfunc.c │ │ ├── linux-crt0.c │ │ ├── linux-syscall.h │ │ ├── linux-syscalls0.S │ │ ├── linux-syscalls1.c │ │ ├── redboot-crt0.S │ │ ├── redboot-syscalls.c │ │ ├── swi.h │ │ ├── syscall.h │ │ ├── syscalls.c │ │ ├── trap.S │ │ └── truncate.c │ ├── bfin │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── aclocal.m4 │ │ ├── basiccrt.S │ │ ├── bf504.ld │ │ ├── bf506.ld │ │ ├── bf512.ld │ │ ├── bf514.ld │ │ ├── bf516.ld │ │ ├── bf518.ld │ │ ├── bf522.ld │ │ ├── bf523.ld │ │ ├── bf524.ld │ │ ├── bf525.ld │ │ ├── bf526.ld │ │ ├── bf527.ld │ │ ├── bf531.ld │ │ ├── bf532.ld │ │ ├── bf533.ld │ │ ├── bf534.ld │ │ ├── bf536.ld │ │ ├── bf537.ld │ │ ├── bf538.ld │ │ ├── bf539.ld │ │ ├── bf542.ld │ │ ├── bf544.ld │ │ ├── bf547.ld │ │ ├── bf548.ld │ │ ├── bf549.ld │ │ ├── bf561.ld │ │ ├── bf561a.ld │ │ ├── bf561b.ld │ │ ├── bf561m.ld │ │ ├── bf592.ld │ │ ├── bf606.ld │ │ ├── bf606c0.ld │ │ ├── bf606c1.ld │ │ ├── bf606m.ld │ │ ├── bf607.ld │ │ ├── bf607c0.ld │ │ ├── bf607c1.ld │ │ ├── bf607m.ld │ │ ├── bf608.ld │ │ ├── bf608c0.ld │ │ ├── bf608c1.ld │ │ ├── bf608m.ld │ │ ├── bf609.ld │ │ ├── bf609c0.ld │ │ ├── bf609c1.ld │ │ ├── bf609m.ld │ │ ├── bfin-common-mc.ld │ │ ├── bfin-common-mc0.ld │ │ ├── bfin-common-sc.ld │ │ ├── clear_cache_range.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── include │ │ │ ├── blackfin.h │ │ │ ├── builtins.h │ │ │ ├── ccblkfn.h │ │ │ ├── cdefBF504.h │ │ │ ├── cdefBF504F.h │ │ │ ├── cdefBF506F.h │ │ │ ├── cdefBF50x_base.h │ │ │ ├── cdefBF512.h │ │ │ ├── cdefBF514.h │ │ │ ├── cdefBF516.h │ │ │ ├── cdefBF518.h │ │ │ ├── cdefBF51x_base.h │ │ │ ├── cdefBF522.h │ │ │ ├── cdefBF523.h │ │ │ ├── cdefBF524.h │ │ │ ├── cdefBF525.h │ │ │ ├── cdefBF526.h │ │ │ ├── cdefBF527.h │ │ │ ├── cdefBF52x_base.h │ │ │ ├── cdefBF531.h │ │ │ ├── cdefBF532.h │ │ │ ├── cdefBF533.h │ │ │ ├── cdefBF534.h │ │ │ ├── cdefBF535.h │ │ │ ├── cdefBF536.h │ │ │ ├── cdefBF537.h │ │ │ ├── cdefBF538.h │ │ │ ├── cdefBF539.h │ │ │ ├── cdefBF53x.h │ │ │ ├── cdefBF542.h │ │ │ ├── cdefBF542M.h │ │ │ ├── cdefBF544.h │ │ │ ├── cdefBF544M.h │ │ │ ├── cdefBF547.h │ │ │ ├── cdefBF547M.h │ │ │ ├── cdefBF548.h │ │ │ ├── cdefBF548M.h │ │ │ ├── cdefBF549.h │ │ │ ├── cdefBF549M.h │ │ │ ├── cdefBF54x_base.h │ │ │ ├── cdefBF561.h │ │ │ ├── cdefBF592-A.h │ │ │ ├── cdefBF59x_base.h │ │ │ ├── cdefBF606.h │ │ │ ├── cdefBF607.h │ │ │ ├── cdefBF608.h │ │ │ ├── cdefBF609.h │ │ │ ├── cdef_LPBlackfin.h │ │ │ ├── cdefblackfin.h │ │ │ ├── cplb.h │ │ │ ├── cplbtab.h │ │ │ ├── defBF504.h │ │ │ ├── defBF504F.h │ │ │ ├── defBF506F.h │ │ │ ├── defBF50x_base.h │ │ │ ├── defBF512.h │ │ │ ├── defBF514.h │ │ │ ├── defBF516.h │ │ │ ├── defBF518.h │ │ │ ├── defBF51x_base.h │ │ │ ├── defBF522.h │ │ │ ├── defBF523.h │ │ │ ├── defBF524.h │ │ │ ├── defBF525.h │ │ │ ├── defBF526.h │ │ │ ├── defBF527.h │ │ │ ├── defBF52x_base.h │ │ │ ├── defBF531.h │ │ │ ├── defBF532.h │ │ │ ├── defBF533.h │ │ │ ├── defBF534.h │ │ │ ├── defBF535.h │ │ │ ├── defBF536.h │ │ │ ├── defBF537.h │ │ │ ├── defBF538.h │ │ │ ├── defBF539.h │ │ │ ├── defBF542.h │ │ │ ├── defBF542M.h │ │ │ ├── defBF544.h │ │ │ ├── defBF544M.h │ │ │ ├── defBF547.h │ │ │ ├── defBF547M.h │ │ │ ├── defBF548.h │ │ │ ├── defBF548M.h │ │ │ ├── defBF549.h │ │ │ ├── defBF549M.h │ │ │ ├── defBF54x_base.h │ │ │ ├── defBF561.h │ │ │ ├── defBF592-A.h │ │ │ ├── defBF59x_base.h │ │ │ ├── defBF606.h │ │ │ ├── defBF607.h │ │ │ ├── defBF608.h │ │ │ ├── defBF609.h │ │ │ ├── def_LPBlackfin.h │ │ │ ├── defblackfin.h │ │ │ ├── sys │ │ │ │ ├── _adi_platform.h │ │ │ │ ├── anomaly_macros_rtl.h │ │ │ │ ├── excause.h │ │ │ │ ├── exception.h │ │ │ │ ├── mc_typedef.h │ │ │ │ ├── platform.h │ │ │ │ └── pll.h │ │ │ └── sysreg.h │ │ └── syscalls.c │ ├── close.c │ ├── config │ │ ├── default.mh │ │ ├── default.mt │ │ ├── dos.mh │ │ ├── mips.mt │ │ ├── mn10200.mt │ │ ├── mn10300.mt │ │ ├── ppc.mh │ │ └── xc16x.mt │ ├── configure │ ├── configure.in │ ├── cr16 │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── _getenv.c │ │ ├── _rename.c │ │ ├── aclocal.m4 │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dvz_hndl.c │ │ ├── flg_hndl.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── iad_hndl.c │ │ ├── intable.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── putnum.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sim.ld │ │ ├── stat.c │ │ ├── svc_hndl.c │ │ ├── sys │ │ │ └── syscall.h │ │ ├── time.c │ │ ├── und_hndl.c │ │ ├── unlink.c │ │ └── write.c │ ├── cris │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crti.c │ │ ├── crtn.c │ │ ├── gensyscalls │ │ ├── irqtable.S │ │ ├── lcrt0.c │ │ ├── linunistd.h │ │ ├── outbyte.c │ │ └── setup.S │ ├── crx │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── _getenv.c │ │ ├── _rename.c │ │ ├── aclocal.m4 │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dvz_hndl.c │ │ ├── flg_hndl.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── iad_hndl.c │ │ ├── intable.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── putnum.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sim.ld │ │ ├── stat.c │ │ ├── svc_hndl.c │ │ ├── time.c │ │ ├── und_hndl.c │ │ ├── unlink.c │ │ └── write.c │ ├── d30v │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── inbyte.c │ │ ├── outbyte.c │ │ └── syscalls.c │ ├── debug.c │ ├── debug.h │ ├── doc │ │ ├── Makefile.in │ │ ├── configure │ │ ├── configure.in │ │ └── porting.texi │ ├── epiphany │ │ ├── Makefile.in │ │ ├── _exit.S │ │ ├── _exit.c │ │ ├── _isatty.c │ │ ├── access.c │ │ ├── aclocal.m4 │ │ ├── close.c │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── environ.c │ │ ├── epiphany-config.h │ │ ├── epiphany-ivthandlers.S │ │ ├── epiphany-syscalls.c │ │ ├── epiphany-syscalls.h │ │ ├── execve.c │ │ ├── fork.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── gettimeofday.c │ │ ├── kill.c │ │ ├── link.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── stat.c │ │ ├── times.c │ │ ├── unlink.c │ │ ├── wait.c │ │ └── write.c │ ├── fr30 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.s │ │ └── syscalls.c │ ├── frv │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── print.c │ │ ├── putnum.c │ │ ├── sbrk.c │ │ ├── sim-close.S │ │ ├── sim-exit.S │ │ ├── sim-inbyte.c │ │ ├── sim-lseek.S │ │ ├── sim-open.S │ │ ├── sim-read.S │ │ ├── sim-time.c │ │ ├── sim-unlink.S │ │ ├── sim-write.S │ │ └── stat.c │ ├── fstat.c │ ├── ft32 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── sbrk.c │ │ ├── sim-close.S │ │ ├── sim-exit.S │ │ ├── sim-inbyte.c │ │ ├── sim-lseek.S │ │ ├── sim-lseek.c │ │ ├── sim-open.S │ │ ├── sim-read.S │ │ ├── sim-time.c │ │ ├── sim-unlink.S │ │ ├── sim-write.S │ │ ├── sim.ld │ │ └── stat.c │ ├── getpid.c │ ├── glue.h │ ├── hp74x │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── checksum.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.s │ │ ├── debugger.h │ │ ├── debugger.s │ │ ├── diagnose.h │ │ ├── hppa-defs.h │ │ ├── hppa.ld │ │ ├── io.c │ │ ├── iva_table.h │ │ ├── iva_table.s │ │ ├── pa_stub.c │ │ └── test.c │ ├── i386 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── cygmon-crt0.S │ │ ├── cygmon-gmon.c │ │ ├── cygmon-gmon.h │ │ ├── cygmon-salib.c │ │ ├── cygmon-syscall.h │ │ └── cygmon.ld │ ├── i960 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── asm.h │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.c │ │ ├── mon-read.c │ │ ├── mon-syscalls.S │ │ ├── mon-write.c │ │ ├── mon960.c │ │ ├── mon960.ld │ │ └── syscall.h │ ├── iq2000 │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── access.c │ │ ├── aclocal.m4 │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── creat.c │ │ ├── crt0.S │ │ ├── crt1.c │ │ ├── execv.c │ │ ├── execve.c │ │ ├── fork.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── gettime.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── pipe.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sim.ld │ │ ├── stat.c │ │ ├── test.c │ │ ├── time.c │ │ ├── times.c │ │ ├── trap.c │ │ ├── trap.h │ │ ├── unlink.c │ │ ├── utime.c │ │ ├── wait.c │ │ └── write.c │ ├── isatty.c │ ├── kill.c │ ├── libnosys │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── acconfig.h │ │ ├── aclocal.m4 │ │ ├── chown.c │ │ ├── close.c │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.in │ │ ├── environ.c │ │ ├── errno.c │ │ ├── execve.c │ │ ├── fork.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── gettod.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── link.c │ │ ├── lseek.c │ │ ├── nosys.specs │ │ ├── open.c │ │ ├── read.c │ │ ├── readlink.c │ │ ├── sbrk.c │ │ ├── stat.c │ │ ├── symlink.c │ │ ├── times.c │ │ ├── unlink.c │ │ ├── wait.c │ │ ├── warning.h │ │ └── write.c │ ├── lm32 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── isatty.c │ │ ├── scall.S │ │ └── sim.ld │ ├── lseek.c │ ├── m32c │ │ ├── Makefile.in │ │ ├── abort.S │ │ ├── aclocal.m4 │ │ ├── argv.S │ │ ├── argvlen.S │ │ ├── chdir.S │ │ ├── chmod.S │ │ ├── close.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crtn.S │ │ ├── exit.S │ │ ├── fstat.S │ │ ├── genscript │ │ ├── getpid.S │ │ ├── gettimeofday.S │ │ ├── heaptop.S │ │ ├── isatty.S │ │ ├── kill.S │ │ ├── link.S │ │ ├── lseek.S │ │ ├── m32c.tmpl │ │ ├── m32csys.h │ │ ├── open.S │ │ ├── read.S │ │ ├── sample.c │ │ ├── sbrk.c │ │ ├── stat.S │ │ ├── time.S │ │ ├── times.S │ │ ├── unlink.S │ │ ├── utime.S │ │ ├── varvects.S │ │ ├── varvects.h │ │ └── write.S │ ├── m32r │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── chmod.c │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── eit.h │ │ ├── eva-stub.ld │ │ ├── eva.ld │ │ ├── exit.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── m32r-lib.c │ │ ├── m32r-stub.c │ │ ├── mon.specs │ │ ├── open.c │ │ ├── raise.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── stat.c │ │ ├── trap0.S │ │ ├── trapmon0.c │ │ ├── unlink.c │ │ ├── utime.c │ │ └── write.c │ ├── m68hc11 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── sci-inout.S │ │ ├── sim-valid-m68hc11.ld │ │ ├── sim-valid-m68hc12.ld │ │ └── syscalls.c │ ├── m68k │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── asm.h │ │ ├── bcc.ld │ │ ├── cf-crt0.S │ │ ├── cf-crt1.c │ │ ├── cf-exit.c │ │ ├── cf-hosted.S │ │ ├── cf-isrs.c │ │ ├── cf-isv.S │ │ ├── cf-sbrk.c │ │ ├── cf.sc │ │ ├── configure │ │ ├── configure.in │ │ ├── cpu32bug.S │ │ ├── cpu32bug.h │ │ ├── crt0.S │ │ ├── dtor.C │ │ ├── fido-_exit.c │ │ ├── fido-crt0.S │ │ ├── fido-handler.c │ │ ├── fido-hosted.S │ │ ├── fido-sbrk.c │ │ ├── fido.h │ │ ├── fido.sc │ │ ├── fido_profiling.h │ │ ├── idp-inbyte.c │ │ ├── idp-outbyte.c │ │ ├── idp.ld │ │ ├── idpgdb.ld │ │ ├── io-close.c │ │ ├── io-exit.c │ │ ├── io-fstat.c │ │ ├── io-gdb.c │ │ ├── io-gettimeofday.c │ │ ├── io-isatty.c │ │ ├── io-lseek.c │ │ ├── io-open.c │ │ ├── io-read.c │ │ ├── io-rename.c │ │ ├── io-stat.c │ │ ├── io-system.c │ │ ├── io-time.c │ │ ├── io-unlink.c │ │ ├── io-write.c │ │ ├── io.h │ │ ├── leds.c │ │ ├── leds.h │ │ ├── m68k-semi.txt │ │ ├── mc68681reg.h │ │ ├── mc68ec.c │ │ ├── mvme-stub.c │ │ ├── mvme.S │ │ ├── mvme135-asm.S │ │ ├── mvme135.ld │ │ ├── mvme162.ld │ │ ├── mvme162lx-asm.S │ │ ├── sbc5204.ld │ │ ├── sbc5206.ld │ │ ├── sim-abort.c │ │ ├── sim-crt0.S │ │ ├── sim-errno.c │ │ ├── sim-funcs.c │ │ ├── sim-inbyte.c │ │ ├── sim-print.c │ │ ├── sim-sbrk.c │ │ ├── sim.ld │ │ ├── simulator.S │ │ └── test.c │ ├── mcore │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── close.c │ │ ├── cmb-exit.c │ │ ├── cmb-inbyte.c │ │ ├── cmb-outbyte.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── elf-cmb.ld │ │ ├── elf-cmb.specs │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── pe-cmb.ld │ │ ├── pe-cmb.specs │ │ ├── print.c │ │ ├── putnum.c │ │ ├── raise.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── stat.c │ │ ├── syscall.h │ │ ├── syscalls.S │ │ ├── unlink.c │ │ └── write.c │ ├── mep │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crtn.S │ │ ├── default.ld │ │ ├── fmax.ld │ │ ├── gcov-io.h │ │ ├── gmap_default.ld │ │ ├── h_reset.c │ │ ├── handlers.c │ │ ├── isatty.c │ │ ├── mep-bb.c │ │ ├── mep-gmon.c │ │ ├── min.ld │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sdram-crt0.S │ │ ├── sim-crt0.S │ │ ├── sim-crtn.S │ │ ├── simnovec-crt0.S │ │ ├── simple.ld │ │ ├── simsdram-crt0.S │ │ ├── syscalls.S │ │ └── write.c │ ├── microblaze │ │ ├── Makefile.in │ │ ├── _exception_handler.S │ │ ├── _hw_exception_handler.S │ │ ├── _interrupt_handler.S │ │ ├── _program_clean.S │ │ ├── _program_init.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crt1.S │ │ ├── crt2.S │ │ ├── crt3.S │ │ ├── crt4.S │ │ ├── crtinit.S │ │ ├── elf-gloss-linux.ld │ │ ├── elf-gloss-linux.specs │ │ ├── linux-crt0.S │ │ ├── linux-inbyte.c │ │ ├── linux-outbyte.c │ │ ├── linux-syscalls-wrap.c │ │ ├── linux-syscalls.S │ │ ├── linux-syscalls.h │ │ ├── pgcrtinit.S │ │ ├── sbrk.c │ │ ├── sim-crtinit.S │ │ ├── sim-pgcrtinit.S │ │ ├── timer.c │ │ ├── xil_malloc.c │ │ ├── xil_printf.c │ │ ├── xil_sbrk.c │ │ └── xilinx.ld │ ├── mips │ │ ├── Makefile.in │ │ ├── abiflags.S │ │ ├── aclocal.m4 │ │ ├── array-io.c │ │ ├── array.ld │ │ ├── cfe.c │ │ ├── cfe.ld │ │ ├── cfe_api.c │ │ ├── cfe_api.h │ │ ├── cfe_api_int.h │ │ ├── cfe_error.h │ │ ├── cfe_mem.c │ │ ├── cma101.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crt0_cfe.S │ │ ├── crt0_cygmon.S │ │ ├── cygmon.c │ │ ├── ddb-kseg0.ld │ │ ├── ddb.ld │ │ ├── dtor.C │ │ ├── dve.ld │ │ ├── dvemon.c │ │ ├── entry.S │ │ ├── idt.ld │ │ ├── idt32.ld │ │ ├── idt64.ld │ │ ├── idtecoff.ld │ │ ├── idtmon.S │ │ ├── jmr3904-io.c │ │ ├── jmr3904app-java.ld │ │ ├── jmr3904app.ld │ │ ├── jmr3904dram-java.ld │ │ ├── jmr3904dram.ld │ │ ├── lsi.ld │ │ ├── lsipmon.S │ │ ├── mti32.ld │ │ ├── mti64.ld │ │ ├── mti64_64.ld │ │ ├── mti64_n32.ld │ │ ├── nullmon.c │ │ ├── nullmon.ld │ │ ├── pmon.S │ │ ├── pmon.ld │ │ ├── regs.S │ │ ├── sde32.ld │ │ ├── sde64.ld │ │ ├── syscalls.c │ │ ├── test.c │ │ ├── vr4300.S │ │ └── vr5xxx.S │ ├── mn10200 │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── access.c │ │ ├── aclocal.m4 │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── creat.c │ │ ├── crt0.S │ │ ├── crt1.c │ │ ├── eval.ld │ │ ├── execv.c │ │ ├── execve.c │ │ ├── fork.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── gettime.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── pipe.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sim.ld │ │ ├── stat.c │ │ ├── test.c │ │ ├── time.c │ │ ├── times.c │ │ ├── trap.S │ │ ├── trap.h │ │ ├── unlink.c │ │ ├── utime.c │ │ ├── wait.c │ │ └── write.c │ ├── mn10300 │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── access.c │ │ ├── aclocal.m4 │ │ ├── asb2303.ld │ │ ├── asb2305.ld │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── creat.c │ │ ├── crt0-eval.S │ │ ├── crt0.S │ │ ├── crt0_cygmon.S │ │ ├── crt0_redboot.S │ │ ├── crt1.c │ │ ├── cygmon.c │ │ ├── eval.ld │ │ ├── execv.c │ │ ├── execve.c │ │ ├── fork.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── gettime.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── pipe.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sim.ld │ │ ├── stat.c │ │ ├── test.c │ │ ├── time.c │ │ ├── times.c │ │ ├── trap.S │ │ ├── trap.h │ │ ├── unlink.c │ │ ├── utime.c │ │ ├── wait.c │ │ └── write.c │ ├── moxie │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── moxie-elf-common.ld │ │ ├── moxiebox.ld │ │ ├── print.c │ │ ├── putnum.c │ │ ├── qemu-time.c │ │ ├── qemu-write.c │ │ ├── qemu.ld │ │ ├── sbrk.c │ │ ├── sim-close.S │ │ ├── sim-exit.S │ │ ├── sim-inbyte.c │ │ ├── sim-lseek.S │ │ ├── sim-lseek.c │ │ ├── sim-open.S │ │ ├── sim-read.S │ │ ├── sim-time.c │ │ ├── sim-unlink.S │ │ ├── sim-write.S │ │ ├── sim.ld │ │ └── stat.c │ ├── msp430 │ │ ├── Makefile.in │ │ ├── cio.S │ │ ├── cio.h │ │ ├── ciosyscalls.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crt_bss.S │ │ ├── gcrt0.S │ │ ├── intr_vectors.ld │ │ ├── memmodel.h │ │ ├── msp430-sim.ld │ │ ├── msp430xl-sim.ld │ │ ├── sbrk.c │ │ ├── syscalls.S │ │ ├── unlink.c │ │ └── write.c │ ├── mt │ │ ├── 16-002.ld │ │ ├── 16-003.ld │ │ ├── 64-001.ld │ │ ├── Makefile.in │ │ ├── access.c │ │ ├── aclocal.m4 │ │ ├── chmod.c │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0-16-002.S │ │ ├── crt0-16-003.S │ │ ├── crt0-64-001.S │ │ ├── crt0-ms2.S │ │ ├── crt0.S │ │ ├── exit-16-002.c │ │ ├── exit-16-003.c │ │ ├── exit-64-001.c │ │ ├── exit-ms2.c │ │ ├── exit.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── gettime.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── ms2.ld │ │ ├── open.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── startup-16-002.S │ │ ├── startup-16-003.S │ │ ├── startup-64-001.S │ │ ├── startup-ms2.S │ │ ├── stat.c │ │ ├── time.c │ │ ├── times.c │ │ ├── trap.S │ │ ├── trap.h │ │ ├── unlink.c │ │ ├── utime.c │ │ └── write.c │ ├── multi-build.in │ ├── nds32 │ │ ├── Makefile.in │ │ ├── _argv.S │ │ ├── _argvlen.S │ │ ├── _chdir.S │ │ ├── _chmod.S │ │ ├── _close.S │ │ ├── _exit.S │ │ ├── _fstat.S │ │ ├── _getpid.S │ │ ├── _gettimeofday.S │ │ ├── _isatty.S │ │ ├── _kill.S │ │ ├── _link.S │ │ ├── _lseek.S │ │ ├── _open.S │ │ ├── _read.S │ │ ├── _rename.S │ │ ├── _sbrk.S │ │ ├── _stat.S │ │ ├── _system.S │ │ ├── _time.S │ │ ├── _times.S │ │ ├── _unlink.S │ │ ├── _utime.S │ │ ├── _write.S │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crt1.S │ │ ├── syscall_error_handler.S │ │ ├── syscall_extra.h │ │ └── vh.h │ ├── nios2 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── getpid.c │ │ ├── io-close.c │ │ ├── io-exit.c │ │ ├── io-fstat.c │ │ ├── io-gdb.c │ │ ├── io-gettimeofday.c │ │ ├── io-isatty.c │ │ ├── io-lseek.c │ │ ├── io-nios2.S │ │ ├── io-open.c │ │ ├── io-read.c │ │ ├── io-rename.c │ │ ├── io-stat.c │ │ ├── io-system.c │ │ ├── io-time.c │ │ ├── io-unlink.c │ │ ├── io-write.c │ │ ├── io.h │ │ ├── kill.c │ │ ├── nios2-semi.txt │ │ ├── qemu-hosted.ld │ │ └── sbrk.c │ ├── open.c │ ├── or1k │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── board.h │ │ ├── boards │ │ │ ├── README │ │ │ ├── atlys.S │ │ │ ├── de0_nano.S │ │ │ ├── ml501.S │ │ │ ├── ml509.S │ │ │ ├── optimsoc.S │ │ │ ├── or1ksim-uart.S │ │ │ ├── or1ksim.S │ │ │ ├── ordb1a3pe1500.S │ │ │ ├── ordb2a.S │ │ │ ├── orpsocrefdesign.S │ │ │ ├── tmpl.S │ │ │ └── tmpl.c │ │ ├── caches-asm.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── exceptions-asm.S │ │ ├── exceptions.c │ │ ├── impure.c │ │ ├── include │ │ │ ├── or1k-asm.h │ │ │ ├── or1k-nop.h │ │ │ ├── or1k-sprs.h │ │ │ └── or1k-support.h │ │ ├── interrupts-asm.S │ │ ├── interrupts.c │ │ ├── mmu-asm.S │ │ ├── or1k-internals.h │ │ ├── or1k_uart.c │ │ ├── or1k_uart.h │ │ ├── outbyte.S │ │ ├── sbrk.c │ │ ├── sync-asm.S │ │ ├── syscalls.c │ │ ├── timer.c │ │ └── util.c │ ├── pa │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── hp-milli.s │ │ ├── op50n-io.S │ │ ├── op50n.h │ │ ├── op50n.ld │ │ ├── op50nled.c │ │ ├── setjmp.S │ │ ├── test.c │ │ ├── w89k-io.c │ │ ├── w89k.h │ │ └── w89k.ld │ ├── print.c │ ├── pru │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── device-specs │ │ │ └── sim │ │ ├── do_global_dtors.c │ │ ├── gettimeofday.c │ │ ├── inbyte.c │ │ ├── isatty.c │ │ ├── ldscripts │ │ │ ├── gen-ld-scripts.sh │ │ │ └── pruelf-sim.x │ │ ├── outbyte.c │ │ ├── print.c │ │ ├── putnum.c │ │ ├── raise.c │ │ ├── sbrk.c │ │ ├── stat.c │ │ └── syscalls.S │ ├── putnum.c │ ├── read.c │ ├── riscv │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── internal_syscall.h │ │ ├── kernel_stat.h │ │ ├── machine │ │ │ └── syscall.h │ │ ├── nano.specs │ │ ├── nanosleep.c │ │ ├── sim.specs │ │ ├── sys_access.c │ │ ├── sys_chdir.c │ │ ├── sys_chmod.c │ │ ├── sys_chown.c │ │ ├── sys_close.c │ │ ├── sys_conv_stat.c │ │ ├── sys_execve.c │ │ ├── sys_exit.c │ │ ├── sys_faccessat.c │ │ ├── sys_fork.c │ │ ├── sys_fstat.c │ │ ├── sys_fstatat.c │ │ ├── sys_ftime.c │ │ ├── sys_getcwd.c │ │ ├── sys_getpid.c │ │ ├── sys_gettimeofday.c │ │ ├── sys_isatty.c │ │ ├── sys_kill.c │ │ ├── sys_link.c │ │ ├── sys_lseek.c │ │ ├── sys_lstat.c │ │ ├── sys_open.c │ │ ├── sys_openat.c │ │ ├── sys_read.c │ │ ├── sys_sbrk.c │ │ ├── sys_stat.c │ │ ├── sys_sysconf.c │ │ ├── sys_times.c │ │ ├── sys_unlink.c │ │ ├── sys_utime.c │ │ ├── sys_wait.c │ │ └── sys_write.c │ ├── rl78 │ │ ├── Makefile.in │ │ ├── abort.S │ │ ├── argv.S │ │ ├── argvlen.S │ │ ├── chdir.S │ │ ├── chmod.S │ │ ├── close.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crtn.S │ │ ├── exit.S │ │ ├── fstat.S │ │ ├── gcrt0.S │ │ ├── getpid.S │ │ ├── gettimeofday.S │ │ ├── isatty.S │ │ ├── kill.S │ │ ├── link.S │ │ ├── lseek.S │ │ ├── mcount.c │ │ ├── open.S │ │ ├── read.S │ │ ├── rl78-sim.ld │ │ ├── rl78-sys.h │ │ ├── rl78.ld │ │ ├── sbrk.c │ │ ├── stat.S │ │ ├── swrite.S │ │ ├── time.S │ │ ├── times.S │ │ ├── unlink.S │ │ ├── utime.S │ │ ├── vregs.h │ │ └── write.c │ ├── rs6000 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── ads-exit.S │ │ ├── ads-io.c │ │ ├── ads.ld │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── mbx-exit.c │ │ ├── mbx-inbyte.c │ │ ├── mbx-outbyte.c │ │ ├── mbx-print.c │ │ ├── mbx.ld │ │ ├── mbx.specs │ │ ├── mcount.S │ │ ├── mvme-errno.c │ │ ├── mvme-exit.S │ │ ├── mvme-inbyte.S │ │ ├── mvme-outbyte.S │ │ ├── mvme-print.c │ │ ├── mvme-read.c │ │ ├── sim-abort.c │ │ ├── sim-crt0.S │ │ ├── sim-errno.c │ │ ├── sim-getrusage.S │ │ ├── sim-inbyte.c │ │ ├── sim-print.c │ │ ├── sim-sbrk.c │ │ ├── sim-times.c │ │ ├── simulator.S │ │ ├── sol-cfuncs.c │ │ ├── sol-syscall.S │ │ ├── test.c │ │ ├── xil-crt0.S │ │ ├── xilinx.ld │ │ ├── xilinx440.ld │ │ └── yellowknife.ld │ ├── rx │ │ ├── Makefile.in │ │ ├── abort.S │ │ ├── argv.S │ │ ├── argvlen.S │ │ ├── chdir.S │ │ ├── chmod.S │ │ ├── close.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── crtn.S │ │ ├── exit.S │ │ ├── fstat.S │ │ ├── gcrt0.S │ │ ├── getpid.S │ │ ├── gettimeofday.S │ │ ├── heaptop.S │ │ ├── isatty.S │ │ ├── kill.S │ │ ├── link.S │ │ ├── lseek.S │ │ ├── mcount.c │ │ ├── open.S │ │ ├── read.S │ │ ├── rx-sim.ld │ │ ├── rx.ld │ │ ├── rxsys.h │ │ ├── sbrk.c │ │ ├── sigprocmask.S │ │ ├── sleep.S │ │ ├── stat.S │ │ ├── time.S │ │ ├── times.S │ │ ├── unlink.S │ │ ├── utime.S │ │ └── write.S │ ├── sbrk.c │ ├── sh │ │ ├── sh1lcevb.ld │ │ ├── sh2lcevb.ld │ │ ├── sh3bb.ld │ │ └── sh3lcevb.ld │ ├── sparc │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── asm.h │ │ ├── cache.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0-701.S │ │ ├── crt0.S │ │ ├── cygmon-crt0.S │ │ ├── cygmon-salib.c │ │ ├── cygmon-sparc64-ld.src │ │ ├── cygmon.ld.src │ │ ├── dtor.C │ │ ├── elfsim.ld │ │ ├── erc32-crt0.S │ │ ├── erc32-io.c │ │ ├── erc32-stub.c │ │ ├── erc32.ld │ │ ├── ex930.ld │ │ ├── ex931.ld │ │ ├── ex934.ld │ │ ├── fixctors.c │ │ ├── libsys │ │ │ ├── Makefile.in │ │ │ ├── _exit.S │ │ │ ├── aclocal.m4 │ │ │ ├── cerror.S │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── isatty.c │ │ │ ├── libsys-crt0.S │ │ │ ├── sbrk.S │ │ │ ├── syscall.h │ │ │ ├── syscallasm.h │ │ │ ├── template.S │ │ │ └── template_r.S │ │ ├── salib-701.c │ │ ├── salib.c │ │ ├── slite.h │ │ ├── sparc-stub.c │ │ ├── sparc86x.ld │ │ ├── sparcl-stub.c │ │ ├── sparclet-stub.c │ │ ├── sparclite.h │ │ ├── sysc-701.c │ │ ├── syscalls.c │ │ ├── test.c │ │ ├── traps.S │ │ └── tsc701.ld │ ├── sparc_leon │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── aclocal.m4 │ │ ├── amba.c │ │ ├── amba_dbg.c │ │ ├── amba_driver.c │ │ ├── amba_scan.c │ │ ├── asm-leon │ │ │ ├── amba.h │ │ │ ├── asmmacro.h │ │ │ ├── clock.h │ │ │ ├── contextswitch.h │ │ │ ├── elfmacro.h │ │ │ ├── head.h │ │ │ ├── irq.h │ │ │ ├── jiffies.h │ │ │ ├── lambapp.h │ │ │ ├── lambapp_devs.h │ │ │ ├── leon.h │ │ │ ├── leon3.h │ │ │ ├── leonbare_debug.h │ │ │ ├── leonbare_kernel.h │ │ │ ├── leonbare_kernel_queue.h │ │ │ ├── leoncompat.h │ │ │ ├── leondbg.h │ │ │ ├── leonstack.h │ │ │ ├── liblocks.h │ │ │ ├── linkage.h │ │ │ ├── param.h │ │ │ ├── queue.h │ │ │ ├── spinlock.h │ │ │ ├── stack.h │ │ │ ├── time.h │ │ │ ├── timer.h │ │ │ ├── types.h │ │ │ └── winmacros.h │ │ ├── bdinit.S │ │ ├── busscan.S │ │ ├── cacheA.S │ │ ├── catch_interrupt.c │ │ ├── catch_interrupt_mvt.c │ │ ├── catch_interrupt_pending.c │ │ ├── catch_interrupt_svt.c │ │ ├── configure │ │ ├── configure.in │ │ ├── console.c │ │ ├── console_dbg.c │ │ ├── console_init.c │ │ ├── contextswitch.c │ │ ├── contextswitch_asm.S │ │ ├── crt0.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── etrap.S │ │ ├── etrap_fast.S │ │ ├── fpu.S │ │ ├── gettimeofday.c │ │ ├── initcalls.c │ │ ├── io.c │ │ ├── irqinstall.S │ │ ├── irqtrap.S │ │ ├── irqtrap_fast.S │ │ ├── jiffies.c │ │ ├── kernel.c │ │ ├── kernel_context.S │ │ ├── kernel_debug.c │ │ ├── kernel_debug_var.c │ │ ├── kernel_mm.c │ │ ├── kernel_mutex.c │ │ ├── kernel_queue.c │ │ ├── kernel_sched.c │ │ ├── kernel_thread.c │ │ ├── lcpuinit.S │ │ ├── locore.S │ │ ├── locore_atexit.c │ │ ├── locore_clean.S │ │ ├── locore_mvt.S │ │ ├── locore_mvt_reset.S │ │ ├── locore_svt.S │ │ ├── locore_svt_reset.S │ │ ├── locore_svtdisp.S │ │ ├── locore_var.S │ │ ├── locore_var_svt.S │ │ ├── mmu_asm.S │ │ ├── mutex.c │ │ ├── nocache.S │ │ ├── pnpinit.c │ │ ├── pnpinit_malloc.c │ │ ├── pnpinit_simple.c │ │ ├── regwin.S │ │ ├── regwin_patch.c │ │ ├── regwin_slow.S │ │ ├── regwinflush.S │ │ ├── rtc.c │ │ ├── rtrap.S │ │ ├── rtrap_fast.S │ │ ├── stop.S │ │ ├── timer.c │ │ └── times.c │ ├── spu │ │ ├── Makefile.in │ │ ├── access.c │ │ ├── aclocal.m4 │ │ ├── chdir.c │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── conv_stat.c │ │ ├── crt0.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dirfuncs.c │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── exit.c │ │ ├── fchdir.c │ │ ├── fchmod.c │ │ ├── fchown.c │ │ ├── fdatasync.c │ │ ├── fstat.c │ │ ├── fsync.c │ │ ├── ftruncate.c │ │ ├── getcwd.c │ │ ├── getitimer.c │ │ ├── getpagesize.c │ │ ├── getpid.c │ │ ├── gettimeofday.c │ │ ├── isatty.c │ │ ├── jsre.h │ │ ├── kill.c │ │ ├── lchown.c │ │ ├── link.c │ │ ├── linux_getpid.c │ │ ├── linux_gettid.c │ │ ├── linux_syscalls.c │ │ ├── lockf.c │ │ ├── lseek.c │ │ ├── lstat.c │ │ ├── mkdir.c │ │ ├── mknod.c │ │ ├── mkstemp.c │ │ ├── mktemp.c │ │ ├── mmap_eaddr.c │ │ ├── mremap_eaddr.c │ │ ├── msync_eaddr.c │ │ ├── munmap_eaddr.c │ │ ├── nanosleep.c │ │ ├── open.c │ │ ├── pread.c │ │ ├── pwrite.c │ │ ├── read.c │ │ ├── readlink.c │ │ ├── readv.c │ │ ├── rmdir.c │ │ ├── sbrk.c │ │ ├── sched_yield.c │ │ ├── setitimer.c │ │ ├── shm_open.c │ │ ├── shm_unlink.c │ │ ├── stat.c │ │ ├── symlink.c │ │ ├── sync.c │ │ ├── syscalls.c │ │ ├── times.c │ │ ├── truncate.c │ │ ├── umask.c │ │ ├── unlink.c │ │ ├── utime.c │ │ ├── utimes.c │ │ ├── write.c │ │ └── writev.c │ ├── stat.c │ ├── syscall.h │ ├── testsuite │ │ ├── Makefile.in │ │ ├── config │ │ │ ├── hppa.mt │ │ │ ├── m68k.mt │ │ │ ├── mips.mt │ │ │ └── support.c │ │ ├── configure.in │ │ ├── lib │ │ │ └── libgloss.exp │ │ └── libgloss.all │ │ │ ├── Makefile.in │ │ │ ├── array.c │ │ │ ├── configure.in │ │ │ ├── div.c │ │ │ ├── double.c │ │ │ ├── float.c │ │ │ ├── func.c │ │ │ ├── io.c │ │ │ ├── math.c │ │ │ ├── memory.c │ │ │ ├── misc.c │ │ │ ├── printf.c │ │ │ ├── struct.c │ │ │ ├── varargs.c │ │ │ └── varargs2.c │ ├── tic6x │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── getpid.c │ │ ├── kill.c │ │ ├── sbrk.c │ │ └── syscalls.c │ ├── unlink.c │ ├── v850 │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── access.c │ │ ├── aclocal.m4 │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── creat.c │ │ ├── crt0.S │ │ ├── crt1.c │ │ ├── execv.c │ │ ├── execve.c │ │ ├── fork.c │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── gettime.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── link.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── pipe.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sim.ld │ │ ├── stat.c │ │ ├── sys │ │ │ └── syscall.h │ │ ├── time.c │ │ ├── times.c │ │ ├── trap.S │ │ ├── unlink.c │ │ ├── utime.c │ │ ├── wait.c │ │ └── write.c │ ├── visium │ │ ├── Makefile.in │ │ ├── _exit.c │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.S │ │ ├── gettod.c │ │ ├── io-gdb.c │ │ ├── io-stubs.c │ │ ├── io.h │ │ ├── sbrk.c │ │ ├── serial-inbyte.c │ │ ├── serial-outbyte.c │ │ ├── syscall.h │ │ └── syscalls.c │ ├── wince │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ └── configure.in │ ├── write.c │ ├── xc16x │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── close.S │ │ ├── configure │ │ ├── configure.in │ │ ├── create.c │ │ ├── crt0.S │ │ ├── fstat.S │ │ ├── getchar1.c │ │ ├── isatty.c │ │ ├── lseek.c │ │ ├── mem-layout.c │ │ ├── misc.c │ │ ├── open.c │ │ ├── read.c │ │ ├── sbrk.c │ │ ├── sys │ │ │ └── syscall.h │ │ ├── syscalls.c │ │ ├── trap_handle.c │ │ └── write.c │ └── xstormy16 │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── close.c │ │ ├── configure │ │ ├── configure.in │ │ ├── crt0.s │ │ ├── crt0_stub.s │ │ ├── crti.s │ │ ├── crtn.s │ │ ├── eva_app.c │ │ ├── eva_app.ld │ │ ├── eva_stub.ld │ │ ├── fstat.c │ │ ├── getpid.c │ │ ├── isatty.c │ │ ├── kill.c │ │ ├── lseek.c │ │ ├── open.c │ │ ├── sim_high.ld │ │ ├── sim_malloc_start.s │ │ ├── sim_rom.ld │ │ ├── stat.c │ │ ├── syscalls.S │ │ ├── syscalls.m4 │ │ ├── unlink.c │ │ └── xstormy16_stub.c ├── libtool.m4 ├── ltgcc.m4 ├── ltmain.sh ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── makefile.vms ├── missing ├── mkdep ├── mkinstalldirs ├── move-if-change ├── naut-scripts │ └── fixup.sh ├── newlib │ ├── ChangeLog │ ├── ChangeLog-2015 │ ├── HOWTO │ ├── MAINTAINERS │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.shared │ ├── NEWS │ ├── README │ ├── _newlib_version.hin │ ├── acconfig.h │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── configure │ ├── configure.host │ ├── configure.in │ ├── confsubdir.m4 │ ├── doc │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── chapter-texi2docbook.py │ │ ├── configure │ │ ├── configure.in │ │ ├── doc.str │ │ ├── makedoc.c │ │ └── makedocbook.py │ ├── iconvdata │ │ ├── EUC-JP.irreversible │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── SJIS.irreversible │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ ├── dummy.c │ │ ├── euc-jp.c │ │ ├── gconv-modules │ │ ├── jis0201.c │ │ ├── jis0201.h │ │ ├── jis0208.c │ │ ├── jis0208.h │ │ ├── jis0212.c │ │ ├── jis0212.h │ │ └── sjis.c │ ├── libc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── argz │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── argz_add.c │ │ │ ├── argz_add_sep.c │ │ │ ├── argz_append.c │ │ │ ├── argz_count.c │ │ │ ├── argz_create.c │ │ │ ├── argz_create_sep.c │ │ │ ├── argz_delete.c │ │ │ ├── argz_extract.c │ │ │ ├── argz_insert.c │ │ │ ├── argz_next.c │ │ │ ├── argz_replace.c │ │ │ ├── argz_stringify.c │ │ │ ├── buf_findstr.c │ │ │ ├── buf_findstr.h │ │ │ ├── dummy.c │ │ │ ├── envz_add.c │ │ │ ├── envz_entry.c │ │ │ ├── envz_get.c │ │ │ ├── envz_merge.c │ │ │ ├── envz_remove.c │ │ │ └── envz_strip.c │ │ ├── configure │ │ ├── configure.in │ │ ├── ctype │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── caseconv.t │ │ │ ├── categories.c │ │ │ ├── categories.cat │ │ │ ├── categories.h │ │ │ ├── categories.t │ │ │ ├── ctype.tex │ │ │ ├── ctype_.c │ │ │ ├── ctype_.h │ │ │ ├── ctype_cp.h │ │ │ ├── ctype_iso.h │ │ │ ├── isalnum.c │ │ │ ├── isalnum_l.c │ │ │ ├── isalpha.c │ │ │ ├── isalpha_l.c │ │ │ ├── isascii.c │ │ │ ├── isascii_l.c │ │ │ ├── isblank.c │ │ │ ├── isblank_l.c │ │ │ ├── iscntrl.c │ │ │ ├── iscntrl_l.c │ │ │ ├── isdigit.c │ │ │ ├── isdigit_l.c │ │ │ ├── islower.c │ │ │ ├── islower_l.c │ │ │ ├── isprint.c │ │ │ ├── isprint_l.c │ │ │ ├── ispunct.c │ │ │ ├── ispunct_l.c │ │ │ ├── isspace.c │ │ │ ├── isspace_l.c │ │ │ ├── isupper.c │ │ │ ├── isupper_l.c │ │ │ ├── iswalnum.c │ │ │ ├── iswalnum_l.c │ │ │ ├── iswalpha.c │ │ │ ├── iswalpha_l.c │ │ │ ├── iswblank.c │ │ │ ├── iswblank_l.c │ │ │ ├── iswcntrl.c │ │ │ ├── iswcntrl_l.c │ │ │ ├── iswctype.c │ │ │ ├── iswctype_l.c │ │ │ ├── iswdigit.c │ │ │ ├── iswdigit_l.c │ │ │ ├── iswgraph.c │ │ │ ├── iswgraph_l.c │ │ │ ├── iswlower.c │ │ │ ├── iswlower_l.c │ │ │ ├── iswprint.c │ │ │ ├── iswprint_l.c │ │ │ ├── iswpunct.c │ │ │ ├── iswpunct_l.c │ │ │ ├── iswspace.c │ │ │ ├── iswspace_l.c │ │ │ ├── iswupper.c │ │ │ ├── iswupper_l.c │ │ │ ├── iswxdigit.c │ │ │ ├── iswxdigit_l.c │ │ │ ├── isxdigit.c │ │ │ ├── isxdigit_l.c │ │ │ ├── jp2uc.c │ │ │ ├── jp2uc.h │ │ │ ├── local.h │ │ │ ├── mkcaseconv │ │ │ ├── mkcategories │ │ │ ├── mkunidata │ │ │ ├── toascii.c │ │ │ ├── toascii_l.c │ │ │ ├── tolower.c │ │ │ ├── tolower_l.c │ │ │ ├── toupper.c │ │ │ ├── toupper_l.c │ │ │ ├── towctrans.c │ │ │ ├── towctrans_l.c │ │ │ ├── towlower.c │ │ │ ├── towlower_l.c │ │ │ ├── towupper.c │ │ │ ├── towupper_l.c │ │ │ ├── wctrans.c │ │ │ ├── wctrans_l.c │ │ │ ├── wctype.c │ │ │ └── wctype_l.c │ │ ├── errno │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── errno.c │ │ ├── iconv │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ccs │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── big5.c │ │ │ │ ├── binary │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── big5.cct │ │ │ │ │ ├── cns11643_plane1.cct │ │ │ │ │ ├── cns11643_plane14.cct │ │ │ │ │ ├── cns11643_plane2.cct │ │ │ │ │ ├── cp775.cct │ │ │ │ │ ├── cp850.cct │ │ │ │ │ ├── cp852.cct │ │ │ │ │ ├── cp855.cct │ │ │ │ │ ├── cp866.cct │ │ │ │ │ ├── iso_8859_1.cct │ │ │ │ │ ├── iso_8859_10.cct │ │ │ │ │ ├── iso_8859_11.cct │ │ │ │ │ ├── iso_8859_13.cct │ │ │ │ │ ├── iso_8859_14.cct │ │ │ │ │ ├── iso_8859_15.cct │ │ │ │ │ ├── iso_8859_2.cct │ │ │ │ │ ├── iso_8859_3.cct │ │ │ │ │ ├── iso_8859_4.cct │ │ │ │ │ ├── iso_8859_5.cct │ │ │ │ │ ├── iso_8859_6.cct │ │ │ │ │ ├── iso_8859_7.cct │ │ │ │ │ ├── iso_8859_8.cct │ │ │ │ │ ├── iso_8859_9.cct │ │ │ │ │ ├── iso_ir_111.cct │ │ │ │ │ ├── jis_x0201_1976.cct │ │ │ │ │ ├── jis_x0208_1990.cct │ │ │ │ │ ├── jis_x0212_1990.cct │ │ │ │ │ ├── koi8_r.cct │ │ │ │ │ ├── koi8_ru.cct │ │ │ │ │ ├── koi8_u.cct │ │ │ │ │ ├── koi8_uni.cct │ │ │ │ │ ├── ksx1001.cct │ │ │ │ │ ├── win_1250.cct │ │ │ │ │ ├── win_1251.cct │ │ │ │ │ ├── win_1252.cct │ │ │ │ │ ├── win_1253.cct │ │ │ │ │ ├── win_1254.cct │ │ │ │ │ ├── win_1255.cct │ │ │ │ │ ├── win_1256.cct │ │ │ │ │ ├── win_1257.cct │ │ │ │ │ └── win_1258.cct │ │ │ │ ├── ccs.h │ │ │ │ ├── ccsbi.c │ │ │ │ ├── ccsbi.h │ │ │ │ ├── ccsnames.h │ │ │ │ ├── cns11643_plane1.c │ │ │ │ ├── cns11643_plane14.c │ │ │ │ ├── cns11643_plane2.c │ │ │ │ ├── cp775.c │ │ │ │ ├── cp850.c │ │ │ │ ├── cp852.c │ │ │ │ ├── cp855.c │ │ │ │ ├── cp866.c │ │ │ │ ├── iso_8859_1.c │ │ │ │ ├── iso_8859_10.c │ │ │ │ ├── iso_8859_11.c │ │ │ │ ├── iso_8859_13.c │ │ │ │ ├── iso_8859_14.c │ │ │ │ ├── iso_8859_15.c │ │ │ │ ├── iso_8859_2.c │ │ │ │ ├── iso_8859_3.c │ │ │ │ ├── iso_8859_4.c │ │ │ │ ├── iso_8859_5.c │ │ │ │ ├── iso_8859_6.c │ │ │ │ ├── iso_8859_7.c │ │ │ │ ├── iso_8859_8.c │ │ │ │ ├── iso_8859_9.c │ │ │ │ ├── iso_ir_111.c │ │ │ │ ├── jis_x0201_1976.c │ │ │ │ ├── jis_x0208_1990.c │ │ │ │ ├── jis_x0212_1990.c │ │ │ │ ├── koi8_r.c │ │ │ │ ├── koi8_ru.c │ │ │ │ ├── koi8_u.c │ │ │ │ ├── koi8_uni.c │ │ │ │ ├── ksx1001.c │ │ │ │ ├── mktbl.pl │ │ │ │ ├── win_1250.c │ │ │ │ ├── win_1251.c │ │ │ │ ├── win_1252.c │ │ │ │ ├── win_1253.c │ │ │ │ ├── win_1254.c │ │ │ │ ├── win_1255.c │ │ │ │ ├── win_1256.c │ │ │ │ ├── win_1257.c │ │ │ │ └── win_1258.c │ │ │ ├── ces │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cesbi.c │ │ │ │ ├── cesbi.h │ │ │ │ ├── cesdeps.h │ │ │ │ ├── euc.c │ │ │ │ ├── mkdeps.pl │ │ │ │ ├── table-pcs.c │ │ │ │ ├── table.c │ │ │ │ ├── ucs-2-internal.c │ │ │ │ ├── ucs-2.c │ │ │ │ ├── ucs-4-internal.c │ │ │ │ ├── ucs-4.c │ │ │ │ ├── us-ascii.c │ │ │ │ ├── utf-16.c │ │ │ │ └── utf-8.c │ │ │ ├── encoding.aliases │ │ │ ├── iconv.tex │ │ │ └── lib │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aliasesbi.c │ │ │ │ ├── aliasesi.c │ │ │ │ ├── conv.h │ │ │ │ ├── encnames.h │ │ │ │ ├── encoding.deps │ │ │ │ ├── endian.h │ │ │ │ ├── iconv.c │ │ │ │ ├── iconvnls.c │ │ │ │ ├── iconvnls.h │ │ │ │ ├── local.h │ │ │ │ ├── nullconv.c │ │ │ │ ├── ucsconv.c │ │ │ │ └── ucsconv.h │ │ ├── include │ │ │ ├── _ansi.h │ │ │ ├── _newlib_version.h │ │ │ ├── _syslist.h │ │ │ ├── alloca.h │ │ │ ├── ar.h │ │ │ ├── argz.h │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── cpio.h │ │ │ ├── ctype.h │ │ │ ├── devctl.h │ │ │ ├── dirent.h │ │ │ ├── elf.h │ │ │ ├── envlock.h │ │ │ ├── envz.h │ │ │ ├── errno.h │ │ │ ├── fastmath.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── fnmatch.h │ │ │ ├── getopt.h │ │ │ ├── glob.h │ │ │ ├── grp.h │ │ │ ├── iconv.h │ │ │ ├── ieeefp.h │ │ │ ├── inttypes.h │ │ │ ├── langinfo.h │ │ │ ├── libgen.h │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── machine │ │ │ │ ├── _arc4random.h │ │ │ │ ├── _default_types.h │ │ │ │ ├── _endian.h │ │ │ │ ├── _time.h │ │ │ │ ├── _types.h │ │ │ │ ├── ansi.h │ │ │ │ ├── endian.h │ │ │ │ ├── fastmath.h │ │ │ │ ├── ieeefp.h │ │ │ │ ├── malloc.h │ │ │ │ ├── param.h │ │ │ │ ├── setjmp-dj.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ └── types.h │ │ │ ├── malloc.h │ │ │ ├── math.h │ │ │ ├── memory.h │ │ │ ├── ndbm.h │ │ │ ├── newlib.h │ │ │ ├── paths.h │ │ │ ├── pthread.h │ │ │ ├── pwd.h │ │ │ ├── reent.h │ │ │ ├── regdef.h │ │ │ ├── regex.h │ │ │ ├── rpc │ │ │ │ ├── types.h │ │ │ │ └── xdr.h │ │ │ ├── sched.h │ │ │ ├── search.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── spawn.h │ │ │ ├── ssp │ │ │ │ ├── ssp.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── strings.h │ │ │ │ ├── unistd.h │ │ │ │ └── wchar.h │ │ │ ├── stdatomic.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdio_ext.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── sys │ │ │ │ ├── _default_fcntl.h │ │ │ │ ├── _intsup.h │ │ │ │ ├── _locale.h │ │ │ │ ├── _pthreadtypes.h │ │ │ │ ├── _sigset.h │ │ │ │ ├── _stdint.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _types.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── config.h │ │ │ │ ├── custom_file.h │ │ │ │ ├── dir.h │ │ │ │ ├── dirent.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── features.h │ │ │ │ ├── fenv.h │ │ │ │ ├── file.h │ │ │ │ ├── iconvnls.h │ │ │ │ ├── lock.h │ │ │ │ ├── param.h │ │ │ │ ├── queue.h │ │ │ │ ├── reent.h │ │ │ │ ├── resource.h │ │ │ │ ├── sched.h │ │ │ │ ├── select.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdio.h │ │ │ │ ├── string.h │ │ │ │ ├── syslimits.h │ │ │ │ ├── time.h │ │ │ │ ├── timeb.h │ │ │ │ ├── times.h │ │ │ │ ├── timespec.h │ │ │ │ ├── tree.h │ │ │ │ ├── types.h │ │ │ │ ├── unistd.h │ │ │ │ ├── utime.h │ │ │ │ └── wait.h │ │ │ ├── tar.h │ │ │ ├── termios.h │ │ │ ├── tgmath.h │ │ │ ├── threads.h │ │ │ ├── time.h │ │ │ ├── unctrl.h │ │ │ ├── unistd.h │ │ │ ├── utime.h │ │ │ ├── utmp.h │ │ │ ├── wchar.h │ │ │ ├── wctype.h │ │ │ └── wordexp.h │ │ ├── libc.in.xml │ │ ├── libc.texinfo │ │ ├── locale │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── duplocale.c │ │ │ ├── freelocale.c │ │ │ ├── lctype.c │ │ │ ├── lmessages.c │ │ │ ├── lmonetary.c │ │ │ ├── lnumeric.c │ │ │ ├── locale.c │ │ │ ├── locale.tex │ │ │ ├── localeconv.c │ │ │ ├── newlocale.c │ │ │ ├── nl_langinfo.3 │ │ │ ├── nl_langinfo.c │ │ │ ├── setlocale.h │ │ │ ├── timelocal.c │ │ │ └── uselocale.c │ │ ├── machine │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── a29k │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ └── configure.in │ │ │ ├── aarch64 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── machine │ │ │ │ │ └── _types.h │ │ │ │ ├── memchr-stub.c │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp-stub.c │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy-stub.c │ │ │ │ ├── memcpy.S │ │ │ │ ├── memmove-stub.c │ │ │ │ ├── memmove.S │ │ │ │ ├── memset-stub.c │ │ │ │ ├── memset.S │ │ │ │ ├── rawmemchr-stub.c │ │ │ │ ├── rawmemchr.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── stpcpy-stub.c │ │ │ │ ├── stpcpy.S │ │ │ │ ├── strchr-stub.c │ │ │ │ ├── strchr.S │ │ │ │ ├── strchrnul-stub.c │ │ │ │ ├── strchrnul.S │ │ │ │ ├── strcmp-stub.c │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy-stub.c │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen-stub.c │ │ │ │ ├── strlen.S │ │ │ │ ├── strncmp-stub.c │ │ │ │ ├── strncmp.S │ │ │ │ ├── strnlen-stub.c │ │ │ │ ├── strnlen.S │ │ │ │ ├── strrchr-stub.c │ │ │ │ └── strrchr.S │ │ │ ├── aclocal.m4 │ │ │ ├── amdgcn │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── abort.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── atexit.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── exit-value.h │ │ │ │ ├── exit.c │ │ │ │ ├── getreent.c │ │ │ │ ├── malloc_support.c │ │ │ │ └── signal.c │ │ │ ├── arc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── asm.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memcmp-bs-norm.S │ │ │ │ ├── memcmp-stub.c │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy-archs.S │ │ │ │ ├── memcpy-bs.S │ │ │ │ ├── memcpy-stub.c │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset-archs.S │ │ │ │ ├── memset-bs.S │ │ │ │ ├── memset-stub.c │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strchr-bs-norm.S │ │ │ │ ├── strchr-bs.S │ │ │ │ ├── strchr-stub.c │ │ │ │ ├── strchr.S │ │ │ │ ├── strcmp-archs.S │ │ │ │ ├── strcmp-stub.c │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy-bs-arc600.S │ │ │ │ ├── strcpy-bs.S │ │ │ │ ├── strcpy-stub.c │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen-bs-norm.S │ │ │ │ ├── strlen-bs.S │ │ │ │ ├── strlen-stub.c │ │ │ │ ├── strlen.S │ │ │ │ ├── strncpy-bs.S │ │ │ │ ├── strncpy-stub.c │ │ │ │ └── strncpy.S │ │ │ ├── arm │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── acle-compat.h │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── aeabi_memclr.c │ │ │ │ ├── aeabi_memcpy-armv7a.S │ │ │ │ ├── aeabi_memcpy.c │ │ │ │ ├── aeabi_memmove-arm.S │ │ │ │ ├── aeabi_memmove-soft.S │ │ │ │ ├── aeabi_memmove-thumb.S │ │ │ │ ├── aeabi_memmove-thumb2.S │ │ │ │ ├── aeabi_memmove.c │ │ │ │ ├── aeabi_memset-arm.S │ │ │ │ ├── aeabi_memset-soft.S │ │ │ │ ├── aeabi_memset-thumb.S │ │ │ │ ├── aeabi_memset-thumb2.S │ │ │ │ ├── aeabi_memset.c │ │ │ │ ├── arm_asm.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── machine │ │ │ │ │ ├── _endian.h │ │ │ │ │ └── param.h │ │ │ │ ├── memchr-stub.c │ │ │ │ ├── memchr.S │ │ │ │ ├── memcpy-armv7a.S │ │ │ │ ├── memcpy-armv7m.S │ │ │ │ ├── memcpy-stub.c │ │ │ │ ├── memcpy.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcmp-arm-tiny.S │ │ │ │ ├── strcmp-armv4.S │ │ │ │ ├── strcmp-armv4t.S │ │ │ │ ├── strcmp-armv6.S │ │ │ │ ├── strcmp-armv6m.S │ │ │ │ ├── strcmp-armv7.S │ │ │ │ ├── strcmp-armv7m.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.c │ │ │ │ ├── strlen-armv7.S │ │ │ │ ├── strlen-stub.c │ │ │ │ ├── strlen-thumb1-Os.S │ │ │ │ ├── strlen-thumb2-Os.S │ │ │ │ └── strlen.S │ │ │ ├── bfin │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── cr16 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── getenv.c │ │ │ │ ├── setjmp.S │ │ │ │ └── sys │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── libh.h │ │ │ │ │ └── syscall.h │ │ │ ├── cris │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── include │ │ │ │ │ └── pthread.h │ │ │ │ ├── libcdtor.c │ │ │ │ ├── memcpy.c │ │ │ │ ├── memmove.c │ │ │ │ ├── memset.c │ │ │ │ ├── setjmp.c │ │ │ │ └── sys │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ └── signal.h │ │ │ ├── crx │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── getenv.c │ │ │ │ ├── setjmp.S │ │ │ │ └── sys │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── libh.h │ │ │ │ │ └── syscall.h │ │ │ ├── d10v │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── d30v │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── epiphany │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── fr30 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── frv │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── ft32 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── stpcmp.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ └── strlen.S │ │ │ ├── h8300 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── defines.h │ │ │ │ ├── h8sx_strcpy.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── reg_memcpy.S │ │ │ │ ├── reg_memset.S │ │ │ │ ├── setarch.h │ │ │ │ ├── setjmp.S │ │ │ │ └── strcmp.S │ │ │ ├── h8500 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── cmpsi.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── divhi3.S │ │ │ │ ├── divsi3.c │ │ │ │ ├── mulhi3.c │ │ │ │ ├── mulsi3.c │ │ │ │ ├── negsi2.c │ │ │ │ ├── psi.S │ │ │ │ ├── setjmp.S │ │ │ │ └── shifts.c │ │ │ ├── hppa │ │ │ │ ├── DEFS.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── pcc_prefix.s │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcat.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strncat.S │ │ │ │ ├── strncmp.S │ │ │ │ └── strncpy.S │ │ │ ├── i386 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── i386mach.h │ │ │ │ ├── machine │ │ │ │ │ └── fastmath.h │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memmove.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strlen.S │ │ │ │ └── sys │ │ │ │ │ └── fenv.h │ │ │ ├── i960 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memccpy.S │ │ │ │ ├── memccpy_ca.S │ │ │ │ ├── memchr.S │ │ │ │ ├── memchr_ca.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcmp_ca.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memcpy_ca.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strchr_ca.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcmp_ca.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strcpy_ca.S │ │ │ │ ├── strcspn.S │ │ │ │ ├── strdup.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strlen_ca.S │ │ │ │ ├── strncat.S │ │ │ │ ├── strncat_ca.S │ │ │ │ ├── strncmp.S │ │ │ │ ├── strncmp_ca.S │ │ │ │ ├── strncpy.S │ │ │ │ ├── strncpy_ca.S │ │ │ │ ├── strpbrk.S │ │ │ │ └── strrchr.S │ │ │ ├── iq2000 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── lm32 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── m32c │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── m32r │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── m68hc11 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── m68k │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── m68kasm.h │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcpy.c │ │ │ │ └── strlen.c │ │ │ ├── m88k │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── mep │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── microblaze │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── abort.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── longjmp.S │ │ │ │ ├── mb_endian.h │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcmp.c │ │ │ │ ├── strcpy.c │ │ │ │ └── strlen.c │ │ │ ├── mips │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── machine │ │ │ │ │ ├── asm.h │ │ │ │ │ └── regdef.h │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strlen.c │ │ │ │ └── strncpy.c │ │ │ ├── mn10200 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── mn10300 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ └── strlen.S │ │ │ ├── moxie │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── msp430 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── setjmp.S │ │ │ │ ├── tiny-printf.c │ │ │ │ └── tiny-puts.c │ │ │ ├── mt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── nds32 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── abort.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcmp.S │ │ │ │ └── strcpy.S │ │ │ ├── necv70 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── fastmath.S │ │ │ │ ├── machine │ │ │ │ │ └── registers.h │ │ │ │ ├── necv70.tex │ │ │ │ └── setjmp.S │ │ │ ├── nios2 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.s │ │ │ ├── nvptx │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── abort.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── assert.c │ │ │ │ ├── calloc.c │ │ │ │ ├── callocr.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── exit.c │ │ │ │ ├── free.c │ │ │ │ ├── malloc.c │ │ │ │ ├── mallocr.c │ │ │ │ ├── misc.c │ │ │ │ ├── printf.c │ │ │ │ ├── putchar.c │ │ │ │ ├── puts.c │ │ │ │ ├── realloc.c │ │ │ │ ├── reallocr.c │ │ │ │ └── write.c │ │ │ ├── or1k │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── powerpc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── atosfix16.c │ │ │ │ ├── atosfix32.c │ │ │ │ ├── atosfix64.c │ │ │ │ ├── atoufix16.c │ │ │ │ ├── atoufix32.c │ │ │ │ ├── atoufix64.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── fix64.h │ │ │ │ ├── machine │ │ │ │ │ ├── fenv-fp.h │ │ │ │ │ ├── malloc.h │ │ │ │ │ └── stdlib.h │ │ │ │ ├── setjmp.S │ │ │ │ ├── simdldtoa.c │ │ │ │ ├── strtosfix16.c │ │ │ │ ├── strtosfix32.c │ │ │ │ ├── strtosfix64.c │ │ │ │ ├── strtoufix16.c │ │ │ │ ├── strtoufix32.c │ │ │ │ ├── strtoufix64.c │ │ │ │ ├── sys │ │ │ │ │ └── fenv.h │ │ │ │ ├── ufix64toa.c │ │ │ │ ├── vec_calloc.c │ │ │ │ ├── vec_free.c │ │ │ │ ├── vec_malloc.c │ │ │ │ ├── vec_mallocr.c │ │ │ │ ├── vec_realloc.c │ │ │ │ ├── vfprintf.c │ │ │ │ └── vfscanf.c │ │ │ ├── pru │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.s │ │ │ ├── riscv │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── ffs.c │ │ │ │ ├── ieeefp.c │ │ │ │ ├── memcpy-asm.S │ │ │ │ ├── memcpy.c │ │ │ │ ├── memmove-stub.c │ │ │ │ ├── memmove.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.c │ │ │ │ ├── strlen.c │ │ │ │ └── sys │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ └── string.h │ │ │ ├── rl78 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── rx │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memchr.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memmove.S │ │ │ │ ├── mempcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcat.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strncat.S │ │ │ │ ├── strncmp.S │ │ │ │ └── strncpy.S │ │ │ ├── sh │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── asm.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen.S │ │ │ │ └── strncpy.S │ │ │ ├── sparc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── machine │ │ │ │ │ └── sparclet.h │ │ │ │ ├── scan.c │ │ │ │ ├── setjmp.S │ │ │ │ └── shuffle.c │ │ │ ├── spu │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── assert.c │ │ │ │ ├── c99ppe.h │ │ │ │ ├── calloc_ea.c │ │ │ │ ├── clearerr.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── creat.c │ │ │ │ ├── ea_internal.h │ │ │ │ ├── fclose.c │ │ │ │ ├── fdopen.c │ │ │ │ ├── feof.c │ │ │ │ ├── ferror.c │ │ │ │ ├── fflush.c │ │ │ │ ├── fgetc.c │ │ │ │ ├── fgetpos.c │ │ │ │ ├── fgets.c │ │ │ │ ├── fileno.c │ │ │ │ ├── fiprintf.S │ │ │ │ ├── fiscanf.S │ │ │ │ ├── fopen.c │ │ │ │ ├── fprintf.S │ │ │ │ ├── fputc.c │ │ │ │ ├── fputs.c │ │ │ │ ├── fread.c │ │ │ │ ├── free_ea.c │ │ │ │ ├── freopen.c │ │ │ │ ├── fscanf.S │ │ │ │ ├── fseek.c │ │ │ │ ├── fsetpos.c │ │ │ │ ├── ftell.c │ │ │ │ ├── fwrite.c │ │ │ │ ├── getc.c │ │ │ │ ├── getchar.c │ │ │ │ ├── gets.c │ │ │ │ ├── impure.c │ │ │ │ ├── include │ │ │ │ │ ├── ea.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ └── spu_timer.h │ │ │ │ ├── iprintf.S │ │ │ │ ├── iscanf.S │ │ │ │ ├── machine │ │ │ │ │ └── _types.h │ │ │ │ ├── malloc_ea.c │ │ │ │ ├── memchr_ea.c │ │ │ │ ├── memcmp.c │ │ │ │ ├── memcmp_ea.c │ │ │ │ ├── memcpy.c │ │ │ │ ├── memcpy_ea.c │ │ │ │ ├── memmove.c │ │ │ │ ├── memmove_ea.c │ │ │ │ ├── memset.c │ │ │ │ ├── memset_ea.c │ │ │ │ ├── mk_syscalls │ │ │ │ ├── mmap_ea.c │ │ │ │ ├── mremap_ea.c │ │ │ │ ├── msync_ea.c │ │ │ │ ├── munmap_ea.c │ │ │ │ ├── perror.c │ │ │ │ ├── posix_memalign_ea.c │ │ │ │ ├── pread_ea.c │ │ │ │ ├── printf.S │ │ │ │ ├── putc.c │ │ │ │ ├── putchar.c │ │ │ │ ├── puts.c │ │ │ │ ├── pwrite_ea.c │ │ │ │ ├── read_ea.c │ │ │ │ ├── readv_ea.c │ │ │ │ ├── realloc_ea.c │ │ │ │ ├── remove.c │ │ │ │ ├── rename.c │ │ │ │ ├── rewind.c │ │ │ │ ├── scanf.S │ │ │ │ ├── setbuf.c │ │ │ │ ├── setjmp.S │ │ │ │ ├── setvbuf.c │ │ │ │ ├── siprintf.S │ │ │ │ ├── siscanf.S │ │ │ │ ├── sleep.c │ │ │ │ ├── sniprintf.S │ │ │ │ ├── snprintf.S │ │ │ │ ├── sprintf.S │ │ │ │ ├── spu-gmon.c │ │ │ │ ├── spu-mcount.S │ │ │ │ ├── spu_clock_stop.c │ │ │ │ ├── spu_clock_svcs.c │ │ │ │ ├── spu_timebase.c │ │ │ │ ├── spu_timer_flih.S │ │ │ │ ├── spu_timer_free.c │ │ │ │ ├── spu_timer_internal.h │ │ │ │ ├── spu_timer_slih.c │ │ │ │ ├── spu_timer_slih_reg.c │ │ │ │ ├── spu_timer_stop.c │ │ │ │ ├── spu_timer_svcs.c │ │ │ │ ├── sscanf.S │ │ │ │ ├── stack_reg_va.S │ │ │ │ ├── stdio.c │ │ │ │ ├── straddr.h │ │ │ │ ├── strcat.c │ │ │ │ ├── strcat_ea.c │ │ │ │ ├── strchr.c │ │ │ │ ├── strchr_ea.c │ │ │ │ ├── strcmp.c │ │ │ │ ├── strcmp_ea.c │ │ │ │ ├── strcpy.c │ │ │ │ ├── strcpy.h │ │ │ │ ├── strcpy_ea.c │ │ │ │ ├── strcspn.c │ │ │ │ ├── strcspn_ea.c │ │ │ │ ├── strlen.c │ │ │ │ ├── strlen_ea.c │ │ │ │ ├── strncat.c │ │ │ │ ├── strncat_ea.c │ │ │ │ ├── strncmp.c │ │ │ │ ├── strncmp.h │ │ │ │ ├── strncmp_ea.c │ │ │ │ ├── strncpy.c │ │ │ │ ├── strncpy_ea.c │ │ │ │ ├── strpbrk.c │ │ │ │ ├── strpbrk_ea.c │ │ │ │ ├── strrchr.c │ │ │ │ ├── strrchr_ea.c │ │ │ │ ├── strspn.c │ │ │ │ ├── strspn_ea.c │ │ │ │ ├── strstr_ea.c │ │ │ │ ├── strxfrm.c │ │ │ │ ├── sys │ │ │ │ │ ├── custom_file.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── linux_syscalls.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── uio.h │ │ │ │ │ └── utime.h │ │ │ │ ├── syscall.def │ │ │ │ ├── tmpfile.c │ │ │ │ ├── tmpnam.c │ │ │ │ ├── ungetc.c │ │ │ │ ├── usleep.c │ │ │ │ ├── vec_literal.h │ │ │ │ ├── vfiprintf.c │ │ │ │ ├── vfiscanf.c │ │ │ │ ├── vfprintf.c │ │ │ │ ├── vfscanf.c │ │ │ │ ├── viprintf.c │ │ │ │ ├── viscanf.c │ │ │ │ ├── vprintf.c │ │ │ │ ├── vscanf.c │ │ │ │ ├── vsiprintf.c │ │ │ │ ├── vsiscanf.c │ │ │ │ ├── vsniprintf.c │ │ │ │ ├── vsnprintf.c │ │ │ │ ├── vsprintf.c │ │ │ │ ├── vsscanf.c │ │ │ │ ├── write_ea.c │ │ │ │ └── writev_ea.c │ │ │ ├── tic4x │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── tic6x │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── tic80 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── v850 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── setjmp.S │ │ │ ├── visium │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memcpy.c │ │ │ │ ├── memcpy.h │ │ │ │ ├── memmove.c │ │ │ │ ├── memset.c │ │ │ │ ├── memset.h │ │ │ │ └── setjmp.S │ │ │ ├── w65 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── cmpsi.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── divsi3.c │ │ │ │ ├── lshrhi.S │ │ │ │ ├── mulsi3.c │ │ │ │ ├── sdivhi3.S │ │ │ │ ├── smulhi3.S │ │ │ │ ├── udivhi3.S │ │ │ │ └── umodhi3.S │ │ │ ├── x86_64 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── sys │ │ │ │ │ └── fenv.h │ │ │ │ └── x86_64mach.h │ │ │ ├── xc16x │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── putchar.c │ │ │ │ ├── puts.c │ │ │ │ └── setjmp.S │ │ │ ├── xscale │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── machine │ │ │ │ │ └── profile.h │ │ │ │ ├── memchr.c │ │ │ │ ├── memcmp.c │ │ │ │ ├── memcpy.c │ │ │ │ ├── memmove.c │ │ │ │ ├── memset.c │ │ │ │ ├── setjmp.S │ │ │ │ ├── strchr.c │ │ │ │ ├── strcmp.c │ │ │ │ ├── strcpy.c │ │ │ │ ├── strlen.c │ │ │ │ └── xscale.h │ │ │ ├── xstormy16 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── mallocr.c │ │ │ │ ├── setjmp.S │ │ │ │ └── tiny-malloc.c │ │ │ └── z8k │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── args.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memmove.S │ │ │ │ ├── memset.S │ │ │ │ └── setjmp.S │ │ ├── misc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── __dprintf.c │ │ │ ├── ffs.c │ │ │ ├── fini.c │ │ │ ├── init.c │ │ │ ├── lock.c │ │ │ ├── misc.tex │ │ │ └── unctrl.c │ │ ├── posix │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _isatty.c │ │ │ ├── cclass.h │ │ │ ├── closedir.c │ │ │ ├── cname.h │ │ │ ├── collate.c │ │ │ ├── collate.h │ │ │ ├── collcmp.c │ │ │ ├── creat.c │ │ │ ├── dirfd.c │ │ │ ├── engine.c │ │ │ ├── execl.c │ │ │ ├── execle.c │ │ │ ├── execlp.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── execvp.c │ │ │ ├── fnmatch.3 │ │ │ ├── fnmatch.c │ │ │ ├── glob.3 │ │ │ ├── glob.c │ │ │ ├── isatty.c │ │ │ ├── namespace.h │ │ │ ├── opendir.c │ │ │ ├── popen.c │ │ │ ├── posix.tex │ │ │ ├── posix_spawn.c │ │ │ ├── readdir.c │ │ │ ├── readdir_r.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regex.3 │ │ │ ├── regex2.h │ │ │ ├── regexec.c │ │ │ ├── regfree.c │ │ │ ├── rewinddir.c │ │ │ ├── rune.h │ │ │ ├── runetype.h │ │ │ ├── scandir.c │ │ │ ├── seekdir.c │ │ │ ├── sleep.c │ │ │ ├── sysexits.h │ │ │ ├── telldir.c │ │ │ ├── un-namespace.h │ │ │ ├── usleep.c │ │ │ ├── utils.h │ │ │ ├── wordexp.c │ │ │ ├── wordexp2.h │ │ │ └── wordfree.c │ │ ├── reent │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── closer.c │ │ │ ├── execr.c │ │ │ ├── fcntlr.c │ │ │ ├── fstat64r.c │ │ │ ├── fstatr.c │ │ │ ├── getreent.c │ │ │ ├── gettimeofdayr.c │ │ │ ├── impure.c │ │ │ ├── isattyr.c │ │ │ ├── linkr.c │ │ │ ├── lseek64r.c │ │ │ ├── lseekr.c │ │ │ ├── mkdirr.c │ │ │ ├── open64r.c │ │ │ ├── openr.c │ │ │ ├── readr.c │ │ │ ├── reent.c │ │ │ ├── reent.tex │ │ │ ├── renamer.c │ │ │ ├── sbrkr.c │ │ │ ├── signalr.c │ │ │ ├── signgam.c │ │ │ ├── stat64r.c │ │ │ ├── statr.c │ │ │ ├── timesr.c │ │ │ ├── unlinkr.c │ │ │ └── writer.c │ │ ├── saber │ │ ├── search │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bsd_qsort_r.c │ │ │ ├── bsearch.c │ │ │ ├── db_local.h │ │ │ ├── extern.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── hash_bigkey.c │ │ │ ├── hash_buf.c │ │ │ ├── hash_func.c │ │ │ ├── hash_log2.c │ │ │ ├── hash_page.c │ │ │ ├── hcreate.3 │ │ │ ├── hcreate.c │ │ │ ├── hcreate_r.c │ │ │ ├── ndbm.c │ │ │ ├── page.h │ │ │ ├── qsort.c │ │ │ ├── qsort_r.c │ │ │ ├── tdelete.c │ │ │ ├── tdestroy.c │ │ │ ├── tfind.c │ │ │ ├── tsearch.3 │ │ │ ├── tsearch.c │ │ │ └── twalk.c │ │ ├── signal │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── psignal.c │ │ │ ├── raise.c │ │ │ ├── signal.c │ │ │ └── signal.tex │ │ ├── ssp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── chk_fail.c │ │ │ ├── gets_chk.c │ │ │ ├── memcpy_chk.c │ │ │ ├── memmove_chk.c │ │ │ ├── mempcpy_chk.c │ │ │ ├── memset_chk.c │ │ │ ├── snprintf_chk.c │ │ │ ├── sprintf_chk.c │ │ │ ├── ssp.tex │ │ │ ├── stack_protector.c │ │ │ ├── stpcpy_chk.c │ │ │ ├── stpncpy_chk.c │ │ │ ├── strcat_chk.c │ │ │ ├── strcpy_chk.c │ │ │ ├── strncat_chk.c │ │ │ ├── strncpy_chk.c │ │ │ ├── vsnprintf_chk.c │ │ │ └── vsprintf_chk.c │ │ ├── stdio │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── asiprintf.c │ │ │ ├── asniprintf.c │ │ │ ├── asnprintf.c │ │ │ ├── asprintf.c │ │ │ ├── clearerr.c │ │ │ ├── clearerr_u.c │ │ │ ├── diprintf.c │ │ │ ├── dprintf.c │ │ │ ├── fclose.c │ │ │ ├── fcloseall.c │ │ │ ├── fdopen.c │ │ │ ├── feof.c │ │ │ ├── feof_u.c │ │ │ ├── ferror.c │ │ │ ├── ferror_u.c │ │ │ ├── fflush.c │ │ │ ├── fflush_u.c │ │ │ ├── fgetc.c │ │ │ ├── fgetc_u.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fgets_u.c │ │ │ ├── fgetwc.c │ │ │ ├── fgetwc_u.c │ │ │ ├── fgetws.c │ │ │ ├── fgetws_u.c │ │ │ ├── fileno.c │ │ │ ├── fileno_u.c │ │ │ ├── findfp.c │ │ │ ├── fiprintf.c │ │ │ ├── fiscanf.c │ │ │ ├── flags.c │ │ │ ├── floatio.h │ │ │ ├── fmemopen.c │ │ │ ├── fopen.c │ │ │ ├── fopencookie.c │ │ │ ├── fprintf.c │ │ │ ├── fpurge.c │ │ │ ├── fputc.c │ │ │ ├── fputc_u.c │ │ │ ├── fputs.c │ │ │ ├── fputs_u.c │ │ │ ├── fputwc.c │ │ │ ├── fputwc_u.c │ │ │ ├── fputws.c │ │ │ ├── fputws_u.c │ │ │ ├── fread.c │ │ │ ├── fread_u.c │ │ │ ├── freopen.c │ │ │ ├── fscanf.c │ │ │ ├── fseek.c │ │ │ ├── fseeko.c │ │ │ ├── fsetlocking.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── ftello.c │ │ │ ├── funopen.c │ │ │ ├── fvwrite.c │ │ │ ├── fvwrite.h │ │ │ ├── fwalk.c │ │ │ ├── fwide.c │ │ │ ├── fwprintf.c │ │ │ ├── fwrite.c │ │ │ ├── fwrite_u.c │ │ │ ├── fwscanf.c │ │ │ ├── getc.c │ │ │ ├── getc_u.c │ │ │ ├── getchar.c │ │ │ ├── getchar_u.c │ │ │ ├── getdelim.c │ │ │ ├── getline.c │ │ │ ├── gets.c │ │ │ ├── getw.c │ │ │ ├── getwc.c │ │ │ ├── getwc_u.c │ │ │ ├── getwchar.c │ │ │ ├── getwchar_u.c │ │ │ ├── iprintf.c │ │ │ ├── iscanf.c │ │ │ ├── local.h │ │ │ ├── makebuf.c │ │ │ ├── mktemp.c │ │ │ ├── nano-vfprintf.c │ │ │ ├── nano-vfprintf_float.c │ │ │ ├── nano-vfprintf_i.c │ │ │ ├── nano-vfprintf_local.h │ │ │ ├── nano-vfscanf.c │ │ │ ├── nano-vfscanf_float.c │ │ │ ├── nano-vfscanf_i.c │ │ │ ├── nano-vfscanf_local.h │ │ │ ├── open_memstream.c │ │ │ ├── perror.c │ │ │ ├── printf.c │ │ │ ├── putc.c │ │ │ ├── putc_u.c │ │ │ ├── putchar.c │ │ │ ├── putchar_u.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── putwc.c │ │ │ ├── putwc_u.c │ │ │ ├── putwchar.c │ │ │ ├── putwchar_u.c │ │ │ ├── refill.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── rewind.c │ │ │ ├── rget.c │ │ │ ├── scanf.c │ │ │ ├── sccl.c │ │ │ ├── setbuf.c │ │ │ ├── setbuffer.c │ │ │ ├── setlinebuf.c │ │ │ ├── setvbuf.c │ │ │ ├── siprintf.c │ │ │ ├── siscanf.c │ │ │ ├── sniprintf.c │ │ │ ├── snprintf.c │ │ │ ├── sprintf.c │ │ │ ├── sscanf.c │ │ │ ├── stdio.c │ │ │ ├── stdio.tex │ │ │ ├── stdio_ext.c │ │ │ ├── swprintf.c │ │ │ ├── swscanf.c │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ ├── ungetc.c │ │ │ ├── ungetwc.c │ │ │ ├── vasiprintf.c │ │ │ ├── vasniprintf.c │ │ │ ├── vasnprintf.c │ │ │ ├── vasprintf.c │ │ │ ├── vdiprintf.c │ │ │ ├── vdprintf.c │ │ │ ├── vfieeefp.h │ │ │ ├── vfprintf.c │ │ │ ├── vfscanf.c │ │ │ ├── vfwprintf.c │ │ │ ├── vfwscanf.c │ │ │ ├── viprintf.c │ │ │ ├── viscanf.c │ │ │ ├── vprintf.c │ │ │ ├── vscanf.c │ │ │ ├── vsiprintf.c │ │ │ ├── vsiscanf.c │ │ │ ├── vsniprintf.c │ │ │ ├── vsnprintf.c │ │ │ ├── vsprintf.c │ │ │ ├── vsscanf.c │ │ │ ├── vswprintf.c │ │ │ ├── vswscanf.c │ │ │ ├── vwprintf.c │ │ │ ├── vwscanf.c │ │ │ ├── wbuf.c │ │ │ ├── wprintf.c │ │ │ ├── wscanf.c │ │ │ └── wsetup.c │ │ ├── stdio64 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dummy.c │ │ │ ├── fdopen64.c │ │ │ ├── fgetpos64.c │ │ │ ├── fopen64.c │ │ │ ├── freopen64.c │ │ │ ├── fseeko64.c │ │ │ ├── fsetpos64.c │ │ │ ├── ftello64.c │ │ │ ├── stdio64.c │ │ │ ├── stdio64.tex │ │ │ └── tmpfile64.c │ │ ├── stdlib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _Exit.c │ │ │ ├── __adjust.c │ │ │ ├── __atexit.c │ │ │ ├── __call_atexit.c │ │ │ ├── __exp10.c │ │ │ ├── __ten_mu.c │ │ │ ├── a64l.c │ │ │ ├── abort.c │ │ │ ├── abs.c │ │ │ ├── aligned_alloc.c │ │ │ ├── arc4random.c │ │ │ ├── arc4random.h │ │ │ ├── arc4random_uniform.c │ │ │ ├── assert.c │ │ │ ├── atexit.c │ │ │ ├── atexit.h │ │ │ ├── atof.c │ │ │ ├── atoff.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── atoll.c │ │ │ ├── btowc.c │ │ │ ├── calloc.c │ │ │ ├── chacha_private.h │ │ │ ├── cxa_atexit.c │ │ │ ├── cxa_finalize.c │ │ │ ├── div.c │ │ │ ├── drand48.c │ │ │ ├── dtoa.c │ │ │ ├── dtoastub.c │ │ │ ├── ecvtbuf.c │ │ │ ├── efgcvt.c │ │ │ ├── environ.c │ │ │ ├── envlock.c │ │ │ ├── eprintf.c │ │ │ ├── erand48.c │ │ │ ├── exit.c │ │ │ ├── gdtoa-gethex.c │ │ │ ├── gdtoa-hexnan.c │ │ │ ├── gdtoa.h │ │ │ ├── getenv.c │ │ │ ├── getenv_r.c │ │ │ ├── getopt.c │ │ │ ├── getsubopt.3 │ │ │ ├── getsubopt.c │ │ │ ├── imaxabs.c │ │ │ ├── imaxdiv.c │ │ │ ├── itoa.c │ │ │ ├── jrand48.c │ │ │ ├── l64a.c │ │ │ ├── labs.c │ │ │ ├── lcong48.c │ │ │ ├── ldiv.c │ │ │ ├── ldtoa.c │ │ │ ├── llabs.c │ │ │ ├── lldiv.c │ │ │ ├── local.h │ │ │ ├── lrand48.c │ │ │ ├── malign.c │ │ │ ├── malloc.c │ │ │ ├── mallocr.c │ │ │ ├── mbctype.h │ │ │ ├── mblen.c │ │ │ ├── mblen_r.c │ │ │ ├── mbrlen.c │ │ │ ├── mbrtowc.c │ │ │ ├── mbsinit.c │ │ │ ├── mbsnrtowcs.c │ │ │ ├── mbsrtowcs.c │ │ │ ├── mbstowcs.c │ │ │ ├── mbstowcs_r.c │ │ │ ├── mbtowc.c │ │ │ ├── mbtowc_r.c │ │ │ ├── mlock.c │ │ │ ├── mprec.c │ │ │ ├── mprec.h │ │ │ ├── mrand48.c │ │ │ ├── msize.c │ │ │ ├── mstats.c │ │ │ ├── mtrim.c │ │ │ ├── nano-mallocr.c │ │ │ ├── nrand48.c │ │ │ ├── on_exit.c │ │ │ ├── on_exit_args.c │ │ │ ├── on_exit_args.h │ │ │ ├── putenv.c │ │ │ ├── putenv_r.c │ │ │ ├── quick_exit.c │ │ │ ├── rand.c │ │ │ ├── rand48.c │ │ │ ├── rand48.h │ │ │ ├── rand_r.c │ │ │ ├── random.c │ │ │ ├── realloc.c │ │ │ ├── reallocarray.c │ │ │ ├── reallocf.c │ │ │ ├── rpmatch.c │ │ │ ├── sb_charsets.c │ │ │ ├── seed48.c │ │ │ ├── setenv.c │ │ │ ├── setenv_r.c │ │ │ ├── srand48.c │ │ │ ├── std.h │ │ │ ├── stdlib.tex │ │ │ ├── strtod.c │ │ │ ├── strtodg.c │ │ │ ├── strtoimax.c │ │ │ ├── strtol.c │ │ │ ├── strtold.c │ │ │ ├── strtoll.c │ │ │ ├── strtoll_r.c │ │ │ ├── strtorx.c │ │ │ ├── strtoul.c │ │ │ ├── strtoull.c │ │ │ ├── strtoull_r.c │ │ │ ├── strtoumax.c │ │ │ ├── system.c │ │ │ ├── utoa.c │ │ │ ├── valloc.c │ │ │ ├── wcrtomb.c │ │ │ ├── wcsnrtombs.c │ │ │ ├── wcsrtombs.c │ │ │ ├── wcstod.c │ │ │ ├── wcstoimax.c │ │ │ ├── wcstol.c │ │ │ ├── wcstold.c │ │ │ ├── wcstoll.c │ │ │ ├── wcstoll_r.c │ │ │ ├── wcstombs.c │ │ │ ├── wcstombs_r.c │ │ │ ├── wcstoul.c │ │ │ ├── wcstoull.c │ │ │ ├── wcstoull_r.c │ │ │ ├── wcstoumax.c │ │ │ ├── wctob.c │ │ │ ├── wctomb.c │ │ │ └── wctomb_r.c │ │ ├── string │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── WIDTH-A │ │ │ ├── ambiguous.t │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── combining.t │ │ │ ├── explicit_bzero.c │ │ │ ├── ffsl.c │ │ │ ├── ffsll.c │ │ │ ├── fls.c │ │ │ ├── flsl.c │ │ │ ├── flsll.c │ │ │ ├── gnu_basename.c │ │ │ ├── index.c │ │ │ ├── local.h │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmem.c │ │ │ ├── memmove.c │ │ │ ├── mempcpy.c │ │ │ ├── memrchr.c │ │ │ ├── memset.c │ │ │ ├── mkunidata │ │ │ ├── mkwide │ │ │ ├── mkwidthA │ │ │ ├── rawmemchr.c │ │ │ ├── rindex.c │ │ │ ├── stpcpy.c │ │ │ ├── stpncpy.c │ │ │ ├── str-two-way.h │ │ │ ├── strcasecmp.c │ │ │ ├── strcasecmp_l.c │ │ │ ├── strcasestr.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strchrnul.c │ │ │ ├── strcmp.c │ │ │ ├── strcoll.c │ │ │ ├── strcoll_l.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── strdup_r.c │ │ │ ├── strerror.c │ │ │ ├── strerror_r.c │ │ │ ├── strings.tex │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strlen.c │ │ │ ├── strlwr.c │ │ │ ├── strncasecmp.c │ │ │ ├── strncasecmp_l.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strndup.c │ │ │ ├── strndup_r.c │ │ │ ├── strnlen.c │ │ │ ├── strnstr.c │ │ │ ├── strpbrk.c │ │ │ ├── strrchr.c │ │ │ ├── strsep.c │ │ │ ├── strsignal.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ ├── strtok.c │ │ │ ├── strtok_r.c │ │ │ ├── strupr.c │ │ │ ├── strverscmp.c │ │ │ ├── strxfrm.c │ │ │ ├── strxfrm_l.c │ │ │ ├── swab.c │ │ │ ├── timingsafe_bcmp.c │ │ │ ├── timingsafe_memcmp.c │ │ │ ├── u_strerr.c │ │ │ ├── uniset │ │ │ ├── wcpcpy.c │ │ │ ├── wcpncpy.c │ │ │ ├── wcscasecmp.c │ │ │ ├── wcscasecmp_l.c │ │ │ ├── wcscat.c │ │ │ ├── wcschr.c │ │ │ ├── wcscmp.c │ │ │ ├── wcscoll.c │ │ │ ├── wcscoll_l.c │ │ │ ├── wcscpy.c │ │ │ ├── wcscspn.c │ │ │ ├── wcsdup.c │ │ │ ├── wcslcat.c │ │ │ ├── wcslcpy.c │ │ │ ├── wcslen.c │ │ │ ├── wcsncasecmp.c │ │ │ ├── wcsncasecmp_l.c │ │ │ ├── wcsncat.c │ │ │ ├── wcsncmp.c │ │ │ ├── wcsncpy.c │ │ │ ├── wcsnlen.c │ │ │ ├── wcspbrk.c │ │ │ ├── wcsrchr.c │ │ │ ├── wcsspn.c │ │ │ ├── wcsstr.c │ │ │ ├── wcstok.c │ │ │ ├── wcstrings.tex │ │ │ ├── wcswidth.c │ │ │ ├── wcsxfrm.c │ │ │ ├── wcsxfrm_l.c │ │ │ ├── wcwidth.c │ │ │ ├── wide.t │ │ │ ├── wmemchr.c │ │ │ ├── wmemcmp.c │ │ │ ├── wmemcpy.c │ │ │ ├── wmemmove.c │ │ │ ├── wmempcpy.c │ │ │ ├── wmemset.c │ │ │ └── xpg_strerror_r.c │ │ ├── sys.tex │ │ ├── sys │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── a29khif │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _alloc.S │ │ │ │ ├── _close.S │ │ │ │ ├── _cycles.S │ │ │ │ ├── _exit.S │ │ │ │ ├── _fstat.S │ │ │ │ ├── _getpsiz.S │ │ │ │ ├── _gettz.S │ │ │ │ ├── _ioctl.S │ │ │ │ ├── _iostat.S │ │ │ │ ├── _iowait.S │ │ │ │ ├── _isatty.S │ │ │ │ ├── _lseek.S │ │ │ │ ├── _open.S │ │ │ │ ├── _query.S │ │ │ │ ├── _read.S │ │ │ │ ├── _sbrk.S │ │ │ │ ├── _setim.S │ │ │ │ ├── _settrap.S │ │ │ │ ├── _setvec.S │ │ │ │ ├── _tmpnam.S │ │ │ │ ├── _write.S │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── alloc.S │ │ │ │ ├── clock.S │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.S │ │ │ │ ├── getargs.S │ │ │ │ ├── getenv.S │ │ │ │ ├── getpid.c │ │ │ │ ├── kill.c │ │ │ │ ├── read.S │ │ │ │ ├── remove.S │ │ │ │ ├── rename.S │ │ │ │ ├── signal.S │ │ │ │ ├── stubs.S │ │ │ │ ├── sys │ │ │ │ │ ├── cpudef.h │ │ │ │ │ ├── fpsymbol.h │ │ │ │ │ ├── intrinsi.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── proreg.h │ │ │ │ │ ├── romdcl.h │ │ │ │ │ ├── smartmac.h │ │ │ │ │ └── sysmac.h │ │ │ │ ├── systime.S │ │ │ │ └── vec.S │ │ │ ├── aclocal.m4 │ │ │ ├── amdgcn │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── close.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── fcntl.c │ │ │ │ ├── fstat.c │ │ │ │ ├── getpid.c │ │ │ │ ├── isatty.c │ │ │ │ ├── kill.c │ │ │ │ ├── lseek.c │ │ │ │ ├── open.c │ │ │ │ ├── raise.c │ │ │ │ ├── read.c │ │ │ │ ├── stat.c │ │ │ │ ├── unlink.c │ │ │ │ └── write.c │ │ │ ├── arm │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── access.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── aeabi_atexit.c │ │ │ │ ├── arm.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.S │ │ │ │ ├── libcfunc.c │ │ │ │ ├── swi.h │ │ │ │ ├── sys │ │ │ │ │ └── fcntl.h │ │ │ │ ├── syscalls.c │ │ │ │ └── trap.S │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── d10v │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── creat.c │ │ │ │ ├── crt0.S │ │ │ │ ├── sys │ │ │ │ │ └── syscall.h │ │ │ │ ├── syscalls.c │ │ │ │ └── trap.S │ │ │ ├── decstation │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _main.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── sys │ │ │ │ │ └── dirent.h │ │ │ ├── epiphany │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── e_printf.c │ │ │ ├── h8300hms │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _exit.S │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── close.S │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.S │ │ │ │ ├── crt1.c │ │ │ │ ├── fstat.S │ │ │ │ ├── lseek.S │ │ │ │ ├── misc.c │ │ │ │ ├── open.S │ │ │ │ ├── read.S │ │ │ │ ├── sbrk.c │ │ │ │ ├── setarch.h │ │ │ │ ├── stat.S │ │ │ │ ├── sys │ │ │ │ │ ├── file.h │ │ │ │ │ └── syscall.h │ │ │ │ ├── syscalls.c │ │ │ │ └── write.S │ │ │ ├── h8500hms │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ ├── misc.c │ │ │ │ └── syscalls.c │ │ │ ├── linux │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── aio.c │ │ │ │ ├── aio64.c │ │ │ │ ├── argp │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── argp-ba.c │ │ │ │ │ ├── argp-eexst.c │ │ │ │ │ ├── argp-fmtstream.c │ │ │ │ │ ├── argp-fmtstream.h │ │ │ │ │ ├── argp-fs-xinl.c │ │ │ │ │ ├── argp-help.c │ │ │ │ │ ├── argp-namefrob.h │ │ │ │ │ ├── argp-parse.c │ │ │ │ │ ├── argp-pv.c │ │ │ │ │ ├── argp-pvh.c │ │ │ │ │ └── argp-xinl.c │ │ │ │ ├── bits │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── initspin.h │ │ │ │ │ ├── libc-lock.h │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── typesizes.h │ │ │ │ ├── bp-checks.h │ │ │ │ ├── brk.c │ │ │ │ ├── calloc.c │ │ │ │ ├── callocr.c │ │ │ │ ├── cfreer.c │ │ │ │ ├── cfspeed.c │ │ │ │ ├── clock_getres.c │ │ │ │ ├── clock_gettime.c │ │ │ │ ├── clock_settime.c │ │ │ │ ├── cmath │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── math_private.h │ │ │ │ │ ├── s_cacos.c │ │ │ │ │ ├── s_cacosf.c │ │ │ │ │ ├── s_cacosh.c │ │ │ │ │ ├── s_cacoshf.c │ │ │ │ │ ├── s_cacoshl.c │ │ │ │ │ ├── s_cacosl.c │ │ │ │ │ ├── s_casin.c │ │ │ │ │ ├── s_casinf.c │ │ │ │ │ ├── s_casinh.c │ │ │ │ │ ├── s_casinhf.c │ │ │ │ │ ├── s_casinhl.c │ │ │ │ │ ├── s_casinl.c │ │ │ │ │ ├── s_catan.c │ │ │ │ │ ├── s_catanf.c │ │ │ │ │ ├── s_catanh.c │ │ │ │ │ ├── s_catanhf.c │ │ │ │ │ ├── s_catanhl.c │ │ │ │ │ ├── s_catanl.c │ │ │ │ │ ├── s_cbrtl.c │ │ │ │ │ ├── s_ccos.c │ │ │ │ │ ├── s_ccosf.c │ │ │ │ │ ├── s_ccosh.c │ │ │ │ │ ├── s_ccoshf.c │ │ │ │ │ ├── s_ccoshl.c │ │ │ │ │ ├── s_ccosl.c │ │ │ │ │ ├── s_cexp.c │ │ │ │ │ ├── s_cexpf.c │ │ │ │ │ ├── s_cexpl.c │ │ │ │ │ ├── s_clog.c │ │ │ │ │ ├── s_clog10.c │ │ │ │ │ ├── s_clog10f.c │ │ │ │ │ ├── s_clog10l.c │ │ │ │ │ ├── s_clogf.c │ │ │ │ │ ├── s_clogl.c │ │ │ │ │ ├── s_cpow.c │ │ │ │ │ ├── s_cpowf.c │ │ │ │ │ ├── s_cpowl.c │ │ │ │ │ ├── s_cproj.c │ │ │ │ │ ├── s_cprojf.c │ │ │ │ │ ├── s_cprojl.c │ │ │ │ │ ├── s_csin.c │ │ │ │ │ ├── s_csinf.c │ │ │ │ │ ├── s_csinh.c │ │ │ │ │ ├── s_csinhf.c │ │ │ │ │ ├── s_csinhl.c │ │ │ │ │ ├── s_csinl.c │ │ │ │ │ ├── s_csqrt.c │ │ │ │ │ ├── s_csqrtf.c │ │ │ │ │ ├── s_csqrtl.c │ │ │ │ │ ├── s_ctan.c │ │ │ │ │ ├── s_ctanf.c │ │ │ │ │ ├── s_ctanh.c │ │ │ │ │ ├── s_ctanhf.c │ │ │ │ │ ├── s_ctanhl.c │ │ │ │ │ └── s_ctanl.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── confstr.c │ │ │ │ ├── confstr.h │ │ │ │ ├── crt1.c │ │ │ │ ├── ctermid.c │ │ │ │ ├── dl │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── abi-tag.h │ │ │ │ │ ├── atomicity.h │ │ │ │ │ ├── dl-addr.c │ │ │ │ │ ├── dl-cache.c │ │ │ │ │ ├── dl-cache.h │ │ │ │ │ ├── dl-close.c │ │ │ │ │ ├── dl-debug.c │ │ │ │ │ ├── dl-deps.c │ │ │ │ │ ├── dl-dst.h │ │ │ │ │ ├── dl-error.c │ │ │ │ │ ├── dl-fini.c │ │ │ │ │ ├── dl-init.c │ │ │ │ │ ├── dl-iteratephdr.c │ │ │ │ │ ├── dl-libc.c │ │ │ │ │ ├── dl-librecon.h │ │ │ │ │ ├── dl-load.c │ │ │ │ │ ├── dl-local.h │ │ │ │ │ ├── dl-lookup.c │ │ │ │ │ ├── dl-lookupcfg.h │ │ │ │ │ ├── dl-minimal.c │ │ │ │ │ ├── dl-misc.c │ │ │ │ │ ├── dl-object.c │ │ │ │ │ ├── dl-open.c │ │ │ │ │ ├── dl-osinfo.h │ │ │ │ │ ├── dl-profile.c │ │ │ │ │ ├── dl-profstub.c │ │ │ │ │ ├── dl-reloc.c │ │ │ │ │ ├── dl-runtime.c │ │ │ │ │ ├── dl-support.c │ │ │ │ │ ├── dl-sym.c │ │ │ │ │ ├── dl-version.c │ │ │ │ │ ├── do-lookup.h │ │ │ │ │ ├── do-rel.h │ │ │ │ │ ├── dynamic-link.h │ │ │ │ │ ├── kernel-features.h │ │ │ │ │ ├── ldsodefs.h │ │ │ │ │ ├── libintl.h │ │ │ │ │ ├── trusted-dirs.h │ │ │ │ │ └── unsecvars.h │ │ │ │ ├── fclean.c │ │ │ │ ├── flockfile.c │ │ │ │ ├── fpathconf.c │ │ │ │ ├── free.c │ │ │ │ ├── freer.c │ │ │ │ ├── fstab.c │ │ │ │ ├── fstatvfs.c │ │ │ │ ├── fstatvfs64.c │ │ │ │ ├── ftok.c │ │ │ │ ├── ftw.c │ │ │ │ ├── ftw64.c │ │ │ │ ├── funlockfile.c │ │ │ │ ├── getdate.c │ │ │ │ ├── getdate_err.c │ │ │ │ ├── gethostid.c │ │ │ │ ├── gethostname.c │ │ │ │ ├── getlogin.c │ │ │ │ ├── getopt.c │ │ │ │ ├── getopt1.c │ │ │ │ ├── getpwent.c │ │ │ │ ├── getreent.c │ │ │ │ ├── getrlimit64.c │ │ │ │ ├── getwd.c │ │ │ │ ├── hp-timing.h │ │ │ │ ├── iconv │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── categories.def │ │ │ │ │ ├── dummy-repertoire.c │ │ │ │ │ ├── gconv.c │ │ │ │ │ ├── gconv_builtin.c │ │ │ │ │ ├── gconv_builtin.h │ │ │ │ │ ├── gconv_cache.c │ │ │ │ │ ├── gconv_charset.h │ │ │ │ │ ├── gconv_close.c │ │ │ │ │ ├── gconv_conf.c │ │ │ │ │ ├── gconv_db.c │ │ │ │ │ ├── gconv_dl.c │ │ │ │ │ ├── gconv_int.h │ │ │ │ │ ├── gconv_open.c │ │ │ │ │ ├── gconv_simple.c │ │ │ │ │ ├── gconv_trans.c │ │ │ │ │ ├── hash-string.h │ │ │ │ │ ├── iconv.c │ │ │ │ │ ├── iconv.h │ │ │ │ │ ├── iconv_charmap.c │ │ │ │ │ ├── iconv_close.c │ │ │ │ │ ├── iconv_open.c │ │ │ │ │ ├── iconvconfig.h │ │ │ │ │ ├── loadinfo.h │ │ │ │ │ ├── localeinfo.h │ │ │ │ │ ├── loop.c │ │ │ │ │ └── skeleton.c │ │ │ │ ├── ids.c │ │ │ │ ├── include │ │ │ │ │ ├── argp.h │ │ │ │ │ ├── arpa │ │ │ │ │ │ ├── ftp.h │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ ├── nameser.h │ │ │ │ │ │ ├── nameser_compat.h │ │ │ │ │ │ ├── telnet.h │ │ │ │ │ │ └── tftp.h │ │ │ │ │ ├── bp-sym.h │ │ │ │ │ ├── cmathcalls.h │ │ │ │ │ ├── complex.h │ │ │ │ │ ├── dl-hash.h │ │ │ │ │ ├── dlfcn.h │ │ │ │ │ ├── fnmatch.h │ │ │ │ │ ├── gconv.h │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── glob.h │ │ │ │ │ ├── hesiod.h │ │ │ │ │ ├── iconv.h │ │ │ │ │ ├── ifaddrs.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── link.h │ │ │ │ │ ├── ltdl.h │ │ │ │ │ ├── malloc.h │ │ │ │ │ ├── mcheck.h │ │ │ │ │ ├── mqueue.h │ │ │ │ │ ├── namespace.h │ │ │ │ │ ├── net │ │ │ │ │ │ ├── bpf.h │ │ │ │ │ │ ├── bpf_compat.h │ │ │ │ │ │ ├── bpfdesc.h │ │ │ │ │ │ ├── bridge.h │ │ │ │ │ │ ├── ethernet.h │ │ │ │ │ │ ├── fddi.h │ │ │ │ │ │ ├── if.h │ │ │ │ │ │ ├── if_arc.h │ │ │ │ │ │ ├── if_arp.h │ │ │ │ │ │ ├── if_dl.h │ │ │ │ │ │ ├── if_gif.h │ │ │ │ │ │ ├── if_ieee80211.h │ │ │ │ │ │ ├── if_llc.h │ │ │ │ │ │ ├── if_mib.h │ │ │ │ │ │ ├── if_ppp.h │ │ │ │ │ │ ├── if_slvar.h │ │ │ │ │ │ ├── if_sppp.h │ │ │ │ │ │ ├── if_stf.h │ │ │ │ │ │ ├── if_tap.h │ │ │ │ │ │ ├── if_tapvar.h │ │ │ │ │ │ ├── if_tun.h │ │ │ │ │ │ ├── if_tunvar.h │ │ │ │ │ │ ├── if_types.h │ │ │ │ │ │ ├── if_var.h │ │ │ │ │ │ ├── if_vlan_var.h │ │ │ │ │ │ ├── intrq.h │ │ │ │ │ │ ├── iso88025.h │ │ │ │ │ │ ├── net_osdep.h │ │ │ │ │ │ ├── netisr.h │ │ │ │ │ │ ├── pfil.h │ │ │ │ │ │ ├── pfkeyv2.h │ │ │ │ │ │ ├── ppp_comp.h │ │ │ │ │ │ ├── ppp_defs.h │ │ │ │ │ │ ├── radix.h │ │ │ │ │ │ ├── raw_cb.h │ │ │ │ │ │ ├── route.h │ │ │ │ │ │ ├── slcompress.h │ │ │ │ │ │ ├── slip.h │ │ │ │ │ │ └── zlib.h │ │ │ │ │ ├── netconfig.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netinet │ │ │ │ │ │ ├── icmp6.h │ │ │ │ │ │ ├── icmp_var.h │ │ │ │ │ │ ├── if_ether.h │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ ├── igmp_var.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── in_gif.h │ │ │ │ │ │ ├── in_pcb.h │ │ │ │ │ │ ├── in_systm.h │ │ │ │ │ │ ├── in_var.h │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ ├── ip6.h │ │ │ │ │ │ ├── ip_dummynet.h │ │ │ │ │ │ ├── ip_ecn.h │ │ │ │ │ │ ├── ip_encap.h │ │ │ │ │ │ ├── ip_fw.h │ │ │ │ │ │ ├── ip_icmp.h │ │ │ │ │ │ ├── ip_mroute.h │ │ │ │ │ │ ├── ip_var.h │ │ │ │ │ │ ├── ipprotosw.h │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ ├── tcp_debug.h │ │ │ │ │ │ ├── tcp_fsm.h │ │ │ │ │ │ ├── tcp_seq.h │ │ │ │ │ │ ├── tcp_timer.h │ │ │ │ │ │ ├── tcp_var.h │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ ├── udp.h │ │ │ │ │ │ └── udp_var.h │ │ │ │ │ ├── netinet6 │ │ │ │ │ │ ├── ah.h │ │ │ │ │ │ ├── ah6.h │ │ │ │ │ │ ├── esp.h │ │ │ │ │ │ ├── esp6.h │ │ │ │ │ │ ├── esp_rijndael.h │ │ │ │ │ │ ├── icmp6.h │ │ │ │ │ │ ├── in6.h │ │ │ │ │ │ ├── in6_gif.h │ │ │ │ │ │ ├── in6_ifattach.h │ │ │ │ │ │ ├── in6_pcb.h │ │ │ │ │ │ ├── in6_prefix.h │ │ │ │ │ │ ├── in6_var.h │ │ │ │ │ │ ├── ip6.h │ │ │ │ │ │ ├── ip6_ecn.h │ │ │ │ │ │ ├── ip6_fw.h │ │ │ │ │ │ ├── ip6_mroute.h │ │ │ │ │ │ ├── ip6_var.h │ │ │ │ │ │ ├── ip6protosw.h │ │ │ │ │ │ ├── ipcomp.h │ │ │ │ │ │ ├── ipcomp6.h │ │ │ │ │ │ ├── ipsec.h │ │ │ │ │ │ ├── ipsec6.h │ │ │ │ │ │ ├── mld6_var.h │ │ │ │ │ │ ├── nd6.h │ │ │ │ │ │ ├── pim6.h │ │ │ │ │ │ ├── pim6_var.h │ │ │ │ │ │ ├── raw_ip6.h │ │ │ │ │ │ ├── scope6_var.h │ │ │ │ │ │ ├── tcp6_var.h │ │ │ │ │ │ └── udp6_var.h │ │ │ │ │ ├── netns │ │ │ │ │ │ ├── idp.h │ │ │ │ │ │ ├── idp_var.h │ │ │ │ │ │ ├── ns.h │ │ │ │ │ │ ├── ns_error.h │ │ │ │ │ │ ├── ns_if.h │ │ │ │ │ │ ├── ns_pcb.h │ │ │ │ │ │ ├── sp.h │ │ │ │ │ │ ├── spidp.h │ │ │ │ │ │ ├── spp_debug.h │ │ │ │ │ │ ├── spp_timer.h │ │ │ │ │ │ └── spp_var.h │ │ │ │ │ ├── paths.h │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── resolv.h │ │ │ │ │ ├── rpc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── auth.h │ │ │ │ │ │ ├── auth_des.h │ │ │ │ │ │ ├── auth_kerb.h │ │ │ │ │ │ ├── auth_unix.h │ │ │ │ │ │ ├── clnt.h │ │ │ │ │ │ ├── clnt_soc.h │ │ │ │ │ │ ├── clnt_stat.h │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ ├── des_crypt.h │ │ │ │ │ │ ├── nettype.h │ │ │ │ │ │ ├── pmap_clnt.h │ │ │ │ │ │ ├── pmap_prot.h │ │ │ │ │ │ ├── pmap_rmt.h │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ ├── rpc.h │ │ │ │ │ │ ├── rpc_com.h │ │ │ │ │ │ ├── rpc_msg.h │ │ │ │ │ │ ├── rpcb_clnt.h │ │ │ │ │ │ ├── rpcb_prot.h │ │ │ │ │ │ ├── rpcb_prot.x │ │ │ │ │ │ ├── rpcent.h │ │ │ │ │ │ ├── svc.h │ │ │ │ │ │ ├── svc_auth.h │ │ │ │ │ │ ├── svc_dg.h │ │ │ │ │ │ ├── svc_soc.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── xdr.h │ │ │ │ │ ├── rune.h │ │ │ │ │ ├── runetype.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── setlocale.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── un-namespace.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ └── wordexp.h │ │ │ │ ├── inode.c │ │ │ │ ├── internal_statvfs.c │ │ │ │ ├── intl │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bindtextdom.c │ │ │ │ │ ├── catgets.c │ │ │ │ │ ├── catgetsinfo.h │ │ │ │ │ ├── dcgettext.c │ │ │ │ │ ├── dcigettext.c │ │ │ │ │ ├── dcngettext.c │ │ │ │ │ ├── dgettext.c │ │ │ │ │ ├── dngettext.c │ │ │ │ │ ├── explodename.c │ │ │ │ │ ├── finddomain.c │ │ │ │ │ ├── gettext.c │ │ │ │ │ ├── gettext.h │ │ │ │ │ ├── gettextP.h │ │ │ │ │ ├── hash-string.h │ │ │ │ │ ├── l10nflist.c │ │ │ │ │ ├── lcl_stpcpy.c │ │ │ │ │ ├── loadinfo.h │ │ │ │ │ ├── loadmsgcat.c │ │ │ │ │ ├── localealias.c │ │ │ │ │ ├── ngettext.c │ │ │ │ │ ├── open_catalog.c │ │ │ │ │ ├── plural.c │ │ │ │ │ ├── plural.y │ │ │ │ │ └── textdomain.c │ │ │ │ ├── io.c │ │ │ │ ├── io64.c │ │ │ │ ├── ipc.c │ │ │ │ ├── isatty.c │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── libc-internal.h │ │ │ │ ├── libc-symbols.h │ │ │ │ ├── libc-tsd.h │ │ │ │ ├── libintl.h │ │ │ │ ├── linux.c │ │ │ │ ├── linux_fsinfo.h │ │ │ │ ├── linuxthreads │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── attr.c │ │ │ │ │ ├── barrier.c │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── initspin.h │ │ │ │ │ │ ├── libc-lock.h │ │ │ │ │ │ ├── libc-tsd.h │ │ │ │ │ │ ├── local_lim.h │ │ │ │ │ │ ├── posix_opt.h │ │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ │ └── sigthread.h │ │ │ │ │ ├── bp-sym.h │ │ │ │ │ ├── cancel.c │ │ │ │ │ ├── condvar.c │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── defs.awk │ │ │ │ │ ├── ecmutex.c │ │ │ │ │ ├── events.c │ │ │ │ │ ├── getcpuclockid.c │ │ │ │ │ ├── getreent.c │ │ │ │ │ ├── internals.h │ │ │ │ │ ├── join.c │ │ │ │ │ ├── joinrace.c │ │ │ │ │ ├── kernel-features.h │ │ │ │ │ ├── libc-internal.h │ │ │ │ │ ├── libc-symbols.h │ │ │ │ │ ├── linuxthreads.texi │ │ │ │ │ ├── lockfile.c │ │ │ │ │ ├── machine │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configure.in │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ └── generic-sysdep.h │ │ │ │ │ │ └── i386 │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ │ │ ├── bp-asm.h │ │ │ │ │ │ │ ├── clone.S │ │ │ │ │ │ │ ├── configure │ │ │ │ │ │ │ ├── configure.in │ │ │ │ │ │ │ ├── i386-sysdep.S │ │ │ │ │ │ │ ├── i386-sysdep.h │ │ │ │ │ │ │ ├── pspinlock.c │ │ │ │ │ │ │ ├── pt-machine.h │ │ │ │ │ │ │ ├── sigcontextinfo.h │ │ │ │ │ │ │ ├── stackinfo.h │ │ │ │ │ │ │ ├── sysdep.S │ │ │ │ │ │ │ ├── sysdep.h │ │ │ │ │ │ │ └── useldt.h │ │ │ │ │ ├── manager.c │ │ │ │ │ ├── mq_notify.c │ │ │ │ │ ├── mutex.c │ │ │ │ │ ├── no-tsd.c │ │ │ │ │ ├── oldsemaphore.c │ │ │ │ │ ├── posix-timer.h │ │ │ │ │ ├── prio.c │ │ │ │ │ ├── proc_service.h │ │ │ │ │ ├── pt-machine.c │ │ │ │ │ ├── ptclock_gettime.c │ │ │ │ │ ├── ptclock_settime.c │ │ │ │ │ ├── ptfork.c │ │ │ │ │ ├── pthread.c │ │ │ │ │ ├── ptlongjmp.c │ │ │ │ │ ├── queue.h │ │ │ │ │ ├── reent.c │ │ │ │ │ ├── reqsyscalls.c │ │ │ │ │ ├── restart.h │ │ │ │ │ ├── rwlock.c │ │ │ │ │ ├── semaphore.c │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── shlib-compat.h │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── specific.c │ │ │ │ │ ├── spinlock.c │ │ │ │ │ ├── spinlock.h │ │ │ │ │ ├── sysctl.c │ │ │ │ │ ├── td_init.c │ │ │ │ │ ├── td_log.c │ │ │ │ │ ├── td_symbol_list.c │ │ │ │ │ ├── td_ta_clear_event.c │ │ │ │ │ ├── td_ta_delete.c │ │ │ │ │ ├── td_ta_enable_stats.c │ │ │ │ │ ├── td_ta_event_addr.c │ │ │ │ │ ├── td_ta_event_getmsg.c │ │ │ │ │ ├── td_ta_get_nthreads.c │ │ │ │ │ ├── td_ta_get_ph.c │ │ │ │ │ ├── td_ta_get_stats.c │ │ │ │ │ ├── td_ta_map_id2thr.c │ │ │ │ │ ├── td_ta_map_lwp2thr.c │ │ │ │ │ ├── td_ta_new.c │ │ │ │ │ ├── td_ta_reset_stats.c │ │ │ │ │ ├── td_ta_set_event.c │ │ │ │ │ ├── td_ta_setconcurrency.c │ │ │ │ │ ├── td_ta_thr_iter.c │ │ │ │ │ ├── td_ta_tsd_iter.c │ │ │ │ │ ├── td_thr_clear_event.c │ │ │ │ │ ├── td_thr_dbresume.c │ │ │ │ │ ├── td_thr_dbsuspend.c │ │ │ │ │ ├── td_thr_event_enable.c │ │ │ │ │ ├── td_thr_event_getmsg.c │ │ │ │ │ ├── td_thr_get_info.c │ │ │ │ │ ├── td_thr_getfpregs.c │ │ │ │ │ ├── td_thr_getgregs.c │ │ │ │ │ ├── td_thr_getxregs.c │ │ │ │ │ ├── td_thr_getxregsize.c │ │ │ │ │ ├── td_thr_set_event.c │ │ │ │ │ ├── td_thr_setfpregs.c │ │ │ │ │ ├── td_thr_setgregs.c │ │ │ │ │ ├── td_thr_setprio.c │ │ │ │ │ ├── td_thr_setsigpending.c │ │ │ │ │ ├── td_thr_setxregs.c │ │ │ │ │ ├── td_thr_sigsetmask.c │ │ │ │ │ ├── td_thr_tsd.c │ │ │ │ │ ├── td_thr_validate.c │ │ │ │ │ ├── testrtsig.h │ │ │ │ │ ├── thread_db.h │ │ │ │ │ ├── thread_dbP.h │ │ │ │ │ ├── timer_create.c │ │ │ │ │ ├── timer_delete.c │ │ │ │ │ ├── timer_getoverr.c │ │ │ │ │ ├── timer_gettime.c │ │ │ │ │ ├── timer_routines.c │ │ │ │ │ ├── timer_settime.c │ │ │ │ │ ├── tst-cancel.c │ │ │ │ │ ├── tst-context.c │ │ │ │ │ ├── tststack.c │ │ │ │ │ ├── unload.c │ │ │ │ │ ├── weaks.c │ │ │ │ │ └── wrapsyscall.c │ │ │ │ ├── machine │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── hp-timing.h │ │ │ │ │ └── i386 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configure.in │ │ │ │ │ │ ├── crt0.c │ │ │ │ │ │ ├── dl-machine.h │ │ │ │ │ │ ├── dl-procinfo.c │ │ │ │ │ │ ├── dl-procinfo.h │ │ │ │ │ │ ├── get_clockfreq.c │ │ │ │ │ │ ├── getpagesize.c │ │ │ │ │ │ ├── hp-timing.c │ │ │ │ │ │ ├── hp-timing.h │ │ │ │ │ │ ├── huge_val.h │ │ │ │ │ │ ├── i386mach.h │ │ │ │ │ │ ├── include │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── setjmp.h │ │ │ │ │ │ └── termios.h │ │ │ │ │ │ ├── setjmp.S │ │ │ │ │ │ ├── sigaction.c │ │ │ │ │ │ ├── sigstack.h │ │ │ │ │ │ ├── socketcall.h │ │ │ │ │ │ ├── syscall.h │ │ │ │ │ │ ├── sysdep.h │ │ │ │ │ │ └── weakalias.h │ │ │ │ ├── malign.c │ │ │ │ ├── malignr.c │ │ │ │ ├── mallinfor.c │ │ │ │ ├── malloc.c │ │ │ │ ├── mallocr.c │ │ │ │ ├── malloptr.c │ │ │ │ ├── mallstatsr.c │ │ │ │ ├── mcheck.c │ │ │ │ ├── mhooks.h │ │ │ │ ├── mmap.c │ │ │ │ ├── mntent.c │ │ │ │ ├── mntent_r.c │ │ │ │ ├── mq_close.c │ │ │ │ ├── mq_getattr.c │ │ │ │ ├── mq_notify.c │ │ │ │ ├── mq_open.c │ │ │ │ ├── mq_receive.c │ │ │ │ ├── mq_send.c │ │ │ │ ├── mq_setattr.c │ │ │ │ ├── mq_unlink.c │ │ │ │ ├── mqlocal.h │ │ │ │ ├── msize.c │ │ │ │ ├── msizer.c │ │ │ │ ├── mstats.c │ │ │ │ ├── mtrim.c │ │ │ │ ├── mtrimr.c │ │ │ │ ├── net │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── XXX-lookup.c │ │ │ │ │ ├── addr2ascii.c │ │ │ │ │ ├── alias-lookup.c │ │ │ │ │ ├── aliases.h │ │ │ │ │ ├── ascii2addr.c │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── check_pf.c │ │ │ │ │ ├── databases.def │ │ │ │ │ ├── digits_dots.c │ │ │ │ │ ├── ether_aton.c │ │ │ │ │ ├── ether_aton_r.c │ │ │ │ │ ├── ether_hton.c │ │ │ │ │ ├── ether_line.c │ │ │ │ │ ├── ether_ntoa.c │ │ │ │ │ ├── ether_ntoa_r.c │ │ │ │ │ ├── ether_ntoh.c │ │ │ │ │ ├── etherent.h │ │ │ │ │ ├── ethers-lookup.c │ │ │ │ │ ├── function.def │ │ │ │ │ ├── getXXbyYY.c │ │ │ │ │ ├── getXXbyYY_r.c │ │ │ │ │ ├── getXXent.c │ │ │ │ │ ├── getXXent_r.c │ │ │ │ │ ├── getaddrinfo.c │ │ │ │ │ ├── getaliasent.c │ │ │ │ │ ├── getaliasent_r.c │ │ │ │ │ ├── getaliasname.c │ │ │ │ │ ├── getaliasname_r.c │ │ │ │ │ ├── gethstbyad.c │ │ │ │ │ ├── gethstbyad_r.c │ │ │ │ │ ├── gethstbynm.c │ │ │ │ │ ├── gethstbynm2.c │ │ │ │ │ ├── gethstbynm2_r.c │ │ │ │ │ ├── gethstbynm_r.c │ │ │ │ │ ├── gethstent.c │ │ │ │ │ ├── gethstent_r.c │ │ │ │ │ ├── getnameinfo.c │ │ │ │ │ ├── getnetbyad.c │ │ │ │ │ ├── getnetbyad_r.c │ │ │ │ │ ├── getnetbynm.c │ │ │ │ │ ├── getnetbynm_r.c │ │ │ │ │ ├── getnetent.c │ │ │ │ │ ├── getnetent_r.c │ │ │ │ │ ├── getnetgrent.c │ │ │ │ │ ├── getnetgrent_r.c │ │ │ │ │ ├── getnssent.c │ │ │ │ │ ├── getnssent_r.c │ │ │ │ │ ├── getproto.c │ │ │ │ │ ├── getproto_r.c │ │ │ │ │ ├── getprtent.c │ │ │ │ │ ├── getprtent_r.c │ │ │ │ │ ├── getprtname.c │ │ │ │ │ ├── getprtname_r.c │ │ │ │ │ ├── getrpcbyname.c │ │ │ │ │ ├── getrpcbyname_r.c │ │ │ │ │ ├── getrpcbynumber.c │ │ │ │ │ ├── getrpcbynumber_r.c │ │ │ │ │ ├── getrpcent.c │ │ │ │ │ ├── getrpcent_r.c │ │ │ │ │ ├── getservent.c │ │ │ │ │ ├── getservent_r.c │ │ │ │ │ ├── getsrvbynm.c │ │ │ │ │ ├── getsrvbynm_r.c │ │ │ │ │ ├── getsrvbypt.c │ │ │ │ │ ├── getsrvbypt_r.c │ │ │ │ │ ├── grp-lookup.c │ │ │ │ │ ├── herrno.c │ │ │ │ │ ├── hosts-lookup.c │ │ │ │ │ ├── ifaddrs.h │ │ │ │ │ ├── ifname.c │ │ │ │ │ ├── ifreq.c │ │ │ │ │ ├── ifreq.h │ │ │ │ │ ├── in6_addr.c │ │ │ │ │ ├── inet6_option.c │ │ │ │ │ ├── inet_addr.c │ │ │ │ │ ├── inet_lnaof.c │ │ │ │ │ ├── inet_mkadr.c │ │ │ │ │ ├── inet_net.c │ │ │ │ │ ├── inet_net_ntop.c │ │ │ │ │ ├── inet_net_pton.c │ │ │ │ │ ├── inet_neta.c │ │ │ │ │ ├── inet_netof.c │ │ │ │ │ ├── inet_ntoa.c │ │ │ │ │ ├── inet_ntop.c │ │ │ │ │ ├── inet_pton.c │ │ │ │ │ ├── issetugid-stub.c │ │ │ │ │ ├── key-lookup.c │ │ │ │ │ ├── local.h │ │ │ │ │ ├── netgroup.h │ │ │ │ │ ├── netgrp-lookup.c │ │ │ │ │ ├── network-lookup.c │ │ │ │ │ ├── not-cancel.h │ │ │ │ │ ├── ns_name.c │ │ │ │ │ ├── ns_netint.c │ │ │ │ │ ├── ns_parse.c │ │ │ │ │ ├── ns_print.c │ │ │ │ │ ├── ns_samedomain.c │ │ │ │ │ ├── ns_ttl.c │ │ │ │ │ ├── nsap_addr.c │ │ │ │ │ ├── nscd-types.h │ │ │ │ │ ├── nscd │ │ │ │ │ │ ├── nscd-client.h │ │ │ │ │ │ └── nscd_proto.h │ │ │ │ │ ├── nss.h │ │ │ │ │ ├── nsswitch.c │ │ │ │ │ ├── nsswitch.h │ │ │ │ │ ├── opensock.c │ │ │ │ │ ├── proto-lookup.c │ │ │ │ │ ├── pwd-lookup.c │ │ │ │ │ ├── rcmd.c │ │ │ │ │ ├── rcmdsh.c │ │ │ │ │ ├── recv.c │ │ │ │ │ ├── res_comp.c │ │ │ │ │ ├── res_data.c │ │ │ │ │ ├── res_debug.c │ │ │ │ │ ├── res_debug.h │ │ │ │ │ ├── res_hconf.c │ │ │ │ │ ├── res_hconf.h │ │ │ │ │ ├── res_init.c │ │ │ │ │ ├── res_libc.c │ │ │ │ │ ├── res_mkquery.c │ │ │ │ │ ├── res_query.c │ │ │ │ │ ├── res_send.c │ │ │ │ │ ├── rexec.c │ │ │ │ │ ├── rpc-lookup.c │ │ │ │ │ ├── ruserpass.c │ │ │ │ │ ├── send.c │ │ │ │ │ ├── service-lookup.c │ │ │ │ │ ├── spwd-lookup.c │ │ │ │ │ └── un-namespace.h │ │ │ │ ├── ntp_gettime.c │ │ │ │ ├── pathconf.c │ │ │ │ ├── pread.c │ │ │ │ ├── pread64.c │ │ │ │ ├── process.c │ │ │ │ ├── prof-freq.c │ │ │ │ ├── profile.c │ │ │ │ ├── pvallocr.c │ │ │ │ ├── pwrite.c │ │ │ │ ├── pwrite64.c │ │ │ │ ├── raise.c │ │ │ │ ├── readdir64.c │ │ │ │ ├── realloc.c │ │ │ │ ├── reallocr.c │ │ │ │ ├── realpath.c │ │ │ │ ├── rename.c │ │ │ │ ├── resource.c │ │ │ │ ├── scandir64.c │ │ │ │ ├── sched.c │ │ │ │ ├── select.c │ │ │ │ ├── seteuid.c │ │ │ │ ├── sethostid.c │ │ │ │ ├── sethostname.c │ │ │ │ ├── setrlimit64.c │ │ │ │ ├── shared.ld │ │ │ │ ├── shlib-compat.h │ │ │ │ ├── shm_open.c │ │ │ │ ├── shm_unlink.c │ │ │ │ ├── sig.c │ │ │ │ ├── sigaction.c │ │ │ │ ├── siglongjmp.c │ │ │ │ ├── signal.c │ │ │ │ ├── sigqueue.c │ │ │ │ ├── sigset.c │ │ │ │ ├── sigwait.c │ │ │ │ ├── sleep.c │ │ │ │ ├── socket.c │ │ │ │ ├── sockops.h │ │ │ │ ├── stack.c │ │ │ │ ├── statvfs.c │ │ │ │ ├── statvfs64.c │ │ │ │ ├── strsignal.c │ │ │ │ ├── strverscmp.c │ │ │ │ ├── sys │ │ │ │ │ ├── _types.h │ │ │ │ │ ├── cdefs.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── dlfcn.h │ │ │ │ │ ├── elfclass.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── event.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── features.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── ioccom.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── libc-lock.h │ │ │ │ │ ├── libc-tsd.h │ │ │ │ │ ├── link.h │ │ │ │ │ ├── linux_time.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── sockio.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── utime.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ ├── utsname.h │ │ │ │ │ └── wait.h │ │ │ │ ├── sysconf.c │ │ │ │ ├── sysctl.c │ │ │ │ ├── systat.c │ │ │ │ ├── system.c │ │ │ │ ├── tcdrain.c │ │ │ │ ├── tcsendbrk.c │ │ │ │ ├── termios.c │ │ │ │ ├── thread-m.h │ │ │ │ ├── time.c │ │ │ │ ├── ttyname_r.c │ │ │ │ ├── usleep.c │ │ │ │ ├── utimes.c │ │ │ │ ├── vallocr.c │ │ │ │ ├── versionsort.c │ │ │ │ ├── versionsort64.c │ │ │ │ └── wait.c │ │ │ ├── m88kbug │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ ├── sys │ │ │ │ │ └── systraps.h │ │ │ │ └── syscalls.c │ │ │ ├── mmixware │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _exit.c │ │ │ │ ├── access.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── chmod.c │ │ │ │ ├── chown.c │ │ │ │ ├── close.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── creat.c │ │ │ │ ├── crt0.c │ │ │ │ ├── execv.c │ │ │ │ ├── execve.c │ │ │ │ ├── fork.c │ │ │ │ ├── fstat.c │ │ │ │ ├── getpid.c │ │ │ │ ├── gettime.c │ │ │ │ ├── isatty.c │ │ │ │ ├── kill.c │ │ │ │ ├── link.c │ │ │ │ ├── lseek.c │ │ │ │ ├── open.c │ │ │ │ ├── pipe.c │ │ │ │ ├── read.c │ │ │ │ ├── sbrk.c │ │ │ │ ├── setjmp.S │ │ │ │ ├── stat.c │ │ │ │ ├── sys │ │ │ │ │ └── syscall.h │ │ │ │ ├── time.c │ │ │ │ ├── times.c │ │ │ │ ├── unlink.c │ │ │ │ ├── utime.c │ │ │ │ ├── wait.c │ │ │ │ └── write.c │ │ │ ├── nautilus │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _execve.c │ │ │ │ ├── _exit.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── chown.c │ │ │ │ ├── close.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ ├── environ.c │ │ │ │ ├── errno.c │ │ │ │ ├── fcntl.h │ │ │ │ ├── foo │ │ │ │ ├── fork.c │ │ │ │ ├── fstat.c │ │ │ │ ├── getpid.c │ │ │ │ ├── gettod.c │ │ │ │ ├── include │ │ │ │ │ └── sys │ │ │ │ │ │ └── errno.h │ │ │ │ ├── isatty.c │ │ │ │ ├── kill.c │ │ │ │ ├── link.c │ │ │ │ ├── lseek.c │ │ │ │ ├── open.c │ │ │ │ ├── read.c │ │ │ │ ├── sbrk.c │ │ │ │ ├── signal.c │ │ │ │ ├── stat.c │ │ │ │ ├── symlink.c │ │ │ │ ├── syscall.h │ │ │ │ ├── times.c │ │ │ │ ├── unlink.c │ │ │ │ ├── wait.c │ │ │ │ ├── warning.h │ │ │ │ └── write.c │ │ │ ├── netware │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ ├── getpid.c │ │ │ │ └── link.c │ │ │ ├── or1k │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── getreent.S │ │ │ │ ├── mlock.c │ │ │ │ └── or1k-asm.h │ │ │ ├── phoenix │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── alarm.c │ │ │ │ ├── bits │ │ │ │ │ └── posix_opt.h │ │ │ │ ├── chmod.c │ │ │ │ ├── chown.c │ │ │ │ ├── clocks.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── dup.c │ │ │ │ ├── endmntent.c │ │ │ │ ├── exec.c │ │ │ │ ├── fcntl.c │ │ │ │ ├── fork.c │ │ │ │ ├── fs.c │ │ │ │ ├── getentropy.c │ │ │ │ ├── getmntent.c │ │ │ │ ├── getpagesize.c │ │ │ │ ├── groups.c │ │ │ │ ├── ids.c │ │ │ │ ├── include │ │ │ │ │ ├── arpa │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ ├── nameser.h │ │ │ │ │ │ └── telnet.h │ │ │ │ │ ├── features.h │ │ │ │ │ ├── mntent.h │ │ │ │ │ ├── net │ │ │ │ │ │ ├── if.h │ │ │ │ │ │ └── if_arp.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netinet │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── in_systm.h │ │ │ │ │ │ └── ip.h │ │ │ │ │ ├── netinet6 │ │ │ │ │ │ └── in6.h │ │ │ │ │ ├── netpacket │ │ │ │ │ │ └── packet.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ └── time.h │ │ │ │ ├── io.c │ │ │ │ ├── ioctl.c │ │ │ │ ├── machine │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configure.in │ │ │ │ │ │ ├── crt0.S │ │ │ │ │ │ ├── regenerate.sh │ │ │ │ │ │ └── syscall.S │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ └── regenerate.sh │ │ │ │ ├── mmap.c │ │ │ │ ├── mount.c │ │ │ │ ├── nanosleep.c │ │ │ │ ├── net │ │ │ │ │ ├── domainname.c │ │ │ │ │ ├── freeaddrinfo.c │ │ │ │ │ ├── getaddrinfo.c │ │ │ │ │ ├── gethostbyaddr.c │ │ │ │ │ ├── gethostbyname.c │ │ │ │ │ ├── getnameinfo.c │ │ │ │ │ ├── getservbyname.c │ │ │ │ │ ├── getservbyport.c │ │ │ │ │ ├── herror.c │ │ │ │ │ ├── hostname.c │ │ │ │ │ ├── inet_addr.c │ │ │ │ │ ├── inet_aton.c │ │ │ │ │ ├── inet_lnaof.c │ │ │ │ │ ├── inet_makeaddr.c │ │ │ │ │ ├── inet_net_ntop.c │ │ │ │ │ ├── inet_net_pton.c │ │ │ │ │ ├── inet_netof.c │ │ │ │ │ ├── inet_network.c │ │ │ │ │ ├── inet_ntoa.c │ │ │ │ │ ├── inet_ntop.c │ │ │ │ │ ├── inet_pton.c │ │ │ │ │ ├── nametoindex.c │ │ │ │ │ └── network.c │ │ │ │ ├── phoenix.c │ │ │ │ ├── pid.c │ │ │ │ ├── pipe.c │ │ │ │ ├── poll.c │ │ │ │ ├── realpath.c │ │ │ │ ├── reboot.c │ │ │ │ ├── regenerate.sh │ │ │ │ ├── resource.c │ │ │ │ ├── sbrk.c │ │ │ │ ├── sched.c │ │ │ │ ├── select.c │ │ │ │ ├── semaphore.c │ │ │ │ ├── setmntent.c │ │ │ │ ├── shm.c │ │ │ │ ├── signal.c │ │ │ │ ├── socket.c │ │ │ │ ├── sockopt.c │ │ │ │ ├── stat.c │ │ │ │ ├── statfs.c │ │ │ │ ├── symlink.c │ │ │ │ ├── sync.c │ │ │ │ ├── sys │ │ │ │ │ ├── _default_fcntl.h │ │ │ │ │ ├── _null.h │ │ │ │ │ ├── _timespec.h │ │ │ │ │ ├── _timeval.h │ │ │ │ │ ├── _types.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── mount.h │ │ │ │ │ ├── network.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── shm.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timespec.h │ │ │ │ │ ├── timeval.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── uio.h │ │ │ │ │ ├── un.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ ├── utsname.h │ │ │ │ │ ├── vfs.h │ │ │ │ │ └── wait.h │ │ │ │ ├── syscall.h │ │ │ │ ├── sysconf.c │ │ │ │ ├── syslog.c │ │ │ │ ├── time.c │ │ │ │ ├── truncate.c │ │ │ │ ├── tty.c │ │ │ │ ├── uname.c │ │ │ │ ├── utime.c │ │ │ │ └── wait.c │ │ │ ├── rdos │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── chown.c │ │ │ │ ├── close.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.S │ │ │ │ ├── execve.c │ │ │ │ ├── fork.c │ │ │ │ ├── fstat.c │ │ │ │ ├── getenv.c │ │ │ │ ├── getpid.c │ │ │ │ ├── gettod.c │ │ │ │ ├── isatty.c │ │ │ │ ├── kill.c │ │ │ │ ├── link.c │ │ │ │ ├── lseek.c │ │ │ │ ├── open.c │ │ │ │ ├── rdos.S │ │ │ │ ├── rdos.h │ │ │ │ ├── rdoshelp.c │ │ │ │ ├── read.c │ │ │ │ ├── readlink.c │ │ │ │ ├── sbrk.c │ │ │ │ ├── stat.c │ │ │ │ ├── symlink.c │ │ │ │ ├── times.c │ │ │ │ ├── unlink.c │ │ │ │ ├── user.def │ │ │ │ ├── wait.c │ │ │ │ └── write.c │ │ │ ├── rtems │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── cpusetalloc.c │ │ │ │ ├── cpusetfree.c │ │ │ │ ├── crt0.c │ │ │ │ ├── dummysys.c │ │ │ │ └── include │ │ │ │ │ ├── arpa │ │ │ │ │ └── inet.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── machine │ │ │ │ │ ├── _align.h │ │ │ │ │ ├── _arc4random.h │ │ │ │ │ ├── _bitcount.h │ │ │ │ │ ├── _libatomic.h │ │ │ │ │ ├── _threads.h │ │ │ │ │ ├── _time.h │ │ │ │ │ ├── _types.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── param.h │ │ │ │ │ └── types.h │ │ │ │ │ ├── net │ │ │ │ │ └── if.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netinet │ │ │ │ │ ├── in.h │ │ │ │ │ └── tcp.h │ │ │ │ │ ├── netinet6 │ │ │ │ │ └── in6.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── sys │ │ │ │ │ ├── _bitset.h │ │ │ │ │ ├── _cpuset.h │ │ │ │ │ ├── _iovec.h │ │ │ │ │ ├── _pthreadtypes.h │ │ │ │ │ ├── _sockaddr_storage.h │ │ │ │ │ ├── _termios.h │ │ │ │ │ ├── _uio.h │ │ │ │ │ ├── bitset.h │ │ │ │ │ ├── cpuset.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── filio.h │ │ │ │ │ ├── ioccom.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── sockio.h │ │ │ │ │ ├── syslimits.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ ├── ttycom.h │ │ │ │ │ ├── ttydefaults.h │ │ │ │ │ ├── uio.h │ │ │ │ │ ├── un.h │ │ │ │ │ └── utime.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ └── termios.h │ │ │ ├── sh │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── creat.c │ │ │ │ ├── crt0.S │ │ │ │ ├── ftruncate.c │ │ │ │ ├── sys │ │ │ │ │ └── syscall.h │ │ │ │ ├── syscalls.c │ │ │ │ ├── trap.S │ │ │ │ └── truncate.c │ │ │ ├── sparc64 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _exit.S │ │ │ │ ├── _main.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── cerror.S │ │ │ │ ├── closedir.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── creat.c │ │ │ │ ├── crt0.S │ │ │ │ ├── dup2.S │ │ │ │ ├── execve.S │ │ │ │ ├── ieee.c │ │ │ │ ├── isatty.c │ │ │ │ ├── lstat.S │ │ │ │ ├── opendir.c │ │ │ │ ├── readdir.c │ │ │ │ ├── rewinddir.c │ │ │ │ ├── sbrk.S │ │ │ │ ├── scandir.c │ │ │ │ ├── seekdir.c │ │ │ │ ├── sigsetjmp.S │ │ │ │ ├── stat.S │ │ │ │ ├── sys │ │ │ │ │ ├── _timeval.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── syscallasm.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── utime.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ └── wait.h │ │ │ │ ├── telldir.c │ │ │ │ ├── template.S │ │ │ │ ├── template_r.S │ │ │ │ ├── utime.S │ │ │ │ ├── utime2.c │ │ │ │ └── wait.S │ │ │ ├── sun4 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _main.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── ieee.c │ │ │ │ └── sys │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── utime.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ └── wait.h │ │ │ ├── sysmec │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _exit.c │ │ │ │ ├── access.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── chmod.c │ │ │ │ ├── chown.c │ │ │ │ ├── close.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── creat.c │ │ │ │ ├── crt0.S │ │ │ │ ├── crt1.c │ │ │ │ ├── execv.c │ │ │ │ ├── execve.c │ │ │ │ ├── fork.c │ │ │ │ ├── fstat.c │ │ │ │ ├── getpid.c │ │ │ │ ├── gettime.c │ │ │ │ ├── isatty.c │ │ │ │ ├── kill.c │ │ │ │ ├── lseek.c │ │ │ │ ├── open.c │ │ │ │ ├── pipe.c │ │ │ │ ├── read.c │ │ │ │ ├── sbrk.c │ │ │ │ ├── stat.c │ │ │ │ ├── sys │ │ │ │ │ └── syscall.h │ │ │ │ ├── time.c │ │ │ │ ├── times.c │ │ │ │ ├── trap.S │ │ │ │ ├── unlink.c │ │ │ │ ├── utime.c │ │ │ │ ├── wait.c │ │ │ │ └── write.c │ │ │ ├── sysnec810 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.S │ │ │ │ ├── io.S │ │ │ │ ├── misc.c │ │ │ │ ├── sbrk.c │ │ │ │ └── write.c │ │ │ ├── sysnecv850 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _exit.c │ │ │ │ ├── access.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── chmod.c │ │ │ │ ├── chown.c │ │ │ │ ├── close.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── creat.c │ │ │ │ ├── crt0.S │ │ │ │ ├── crt1.c │ │ │ │ ├── execv.c │ │ │ │ ├── execve.c │ │ │ │ ├── fork.c │ │ │ │ ├── fstat.c │ │ │ │ ├── getpid.c │ │ │ │ ├── gettime.c │ │ │ │ ├── isatty.c │ │ │ │ ├── kill.c │ │ │ │ ├── link.c │ │ │ │ ├── lseek.c │ │ │ │ ├── open.c │ │ │ │ ├── pipe.c │ │ │ │ ├── read.c │ │ │ │ ├── rename.c │ │ │ │ ├── sbrk.c │ │ │ │ ├── stat.c │ │ │ │ ├── sys │ │ │ │ │ └── syscall.h │ │ │ │ ├── time.c │ │ │ │ ├── times.c │ │ │ │ ├── trap.S │ │ │ │ ├── unlink.c │ │ │ │ ├── utime.c │ │ │ │ ├── wait.c │ │ │ │ └── write.c │ │ │ ├── sysvi386 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── _exit.S │ │ │ │ ├── _longjmp.S │ │ │ │ ├── _setjmp.S │ │ │ │ ├── access.S │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── alarm.S │ │ │ │ ├── brk.S │ │ │ │ ├── cerror.S │ │ │ │ ├── chdir.S │ │ │ │ ├── chmod.S │ │ │ │ ├── close.S │ │ │ │ ├── closedir.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ ├── dup.c │ │ │ │ ├── dup2.c │ │ │ │ ├── exec.c │ │ │ │ ├── execve.S │ │ │ │ ├── fcntl.S │ │ │ │ ├── fork.S │ │ │ │ ├── fpathconf.S │ │ │ │ ├── fps.S │ │ │ │ ├── fpx.c │ │ │ │ ├── fstat.S │ │ │ │ ├── getdents.S │ │ │ │ ├── getegid.S │ │ │ │ ├── geteuid.S │ │ │ │ ├── getgid.S │ │ │ │ ├── getgroups.S │ │ │ │ ├── getpid.S │ │ │ │ ├── getuid.S │ │ │ │ ├── ioctl.S │ │ │ │ ├── isatty.c │ │ │ │ ├── kill.S │ │ │ │ ├── link.S │ │ │ │ ├── lseek.S │ │ │ │ ├── mkdir.S │ │ │ │ ├── open.S │ │ │ │ ├── opendir.c │ │ │ │ ├── pathconf.S │ │ │ │ ├── pause.S │ │ │ │ ├── pipe.S │ │ │ │ ├── read.S │ │ │ │ ├── readdir.c │ │ │ │ ├── rename.S │ │ │ │ ├── rewinddir.c │ │ │ │ ├── rmdir.S │ │ │ │ ├── sbrk.c │ │ │ │ ├── scandir.c │ │ │ │ ├── seekdir.c │ │ │ │ ├── setgid.S │ │ │ │ ├── setuid.S │ │ │ │ ├── sigaction.S │ │ │ │ ├── signal.S │ │ │ │ ├── sigprocmask.S │ │ │ │ ├── sleep.c │ │ │ │ ├── speed.c │ │ │ │ ├── stat.S │ │ │ │ ├── sys │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── termio.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── utime.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ └── wait.h │ │ │ │ ├── sysconf.S │ │ │ │ ├── tcgetattr.c │ │ │ │ ├── tcline.c │ │ │ │ ├── tcsetattr.c │ │ │ │ ├── telldir.c │ │ │ │ ├── time.S │ │ │ │ ├── times.S │ │ │ │ ├── unlink.S │ │ │ │ ├── utime.S │ │ │ │ ├── wait.S │ │ │ │ ├── waitpid.S │ │ │ │ └── write.S │ │ │ ├── sysvnecv70 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── cerror.S │ │ │ │ ├── close.S │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.S │ │ │ │ ├── exit.S │ │ │ │ ├── fps.S │ │ │ │ ├── fpx.c │ │ │ │ ├── fstat.S │ │ │ │ ├── ioctl.S │ │ │ │ ├── isatty.S │ │ │ │ ├── lseek.S │ │ │ │ ├── open.S │ │ │ │ ├── read.S │ │ │ │ ├── sbrk.S │ │ │ │ ├── sysv60.S │ │ │ │ ├── sysvnecv70.tex │ │ │ │ └── write.S │ │ │ ├── tic80 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ └── crt0.c │ │ │ ├── tirtos │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── include │ │ │ │ │ └── sys │ │ │ │ │ │ └── lock.h │ │ │ │ └── lock.c │ │ │ ├── virtine │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ └── syscalls.c │ │ │ ├── w65 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ ├── sys │ │ │ │ │ └── syscall.h │ │ │ │ ├── syscalls.c │ │ │ │ └── trap.c │ │ │ └── z8ksim │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── crt0.c │ │ │ │ ├── glue.c │ │ │ │ └── sys │ │ │ │ └── syscall.h │ │ ├── syscalls │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── sysclose.c │ │ │ ├── sysexecve.c │ │ │ ├── sysfcntl.c │ │ │ ├── sysfork.c │ │ │ ├── sysfstat.c │ │ │ ├── sysgetpid.c │ │ │ ├── sysgettod.c │ │ │ ├── sysisatty.c │ │ │ ├── syskill.c │ │ │ ├── syslink.c │ │ │ ├── syslseek.c │ │ │ ├── sysopen.c │ │ │ ├── sysread.c │ │ │ ├── syssbrk.c │ │ │ ├── sysstat.c │ │ │ ├── systimes.c │ │ │ ├── sysunlink.c │ │ │ ├── syswait.c │ │ │ └── syswrite.c │ │ ├── time │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── asctime.c │ │ │ ├── asctime_r.c │ │ │ ├── clock.c │ │ │ ├── ctime.c │ │ │ ├── ctime_r.c │ │ │ ├── difftime.c │ │ │ ├── gettzinfo.c │ │ │ ├── gmtime.c │ │ │ ├── gmtime_r.c │ │ │ ├── lcltime.c │ │ │ ├── lcltime_r.c │ │ │ ├── local.h │ │ │ ├── mktime.c │ │ │ ├── month_lengths.c │ │ │ ├── strftime.c │ │ │ ├── strptime.c │ │ │ ├── time.c │ │ │ ├── time.tex │ │ │ ├── tzcalc_limits.c │ │ │ ├── tzlock.c │ │ │ ├── tzset.c │ │ │ ├── tzset_r.c │ │ │ ├── tzvars.c │ │ │ └── wcsftime.c │ │ ├── unix │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── basename.c │ │ │ ├── dirname.c │ │ │ ├── getcwd.c │ │ │ ├── getlogin.c │ │ │ ├── getpass.c │ │ │ ├── getpwent.c │ │ │ ├── getut.c │ │ │ ├── pread.c │ │ │ ├── pwrite.c │ │ │ ├── sigset.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname.h │ │ │ └── ttyname_r.c │ │ └── xdr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── dummy.c │ │ │ ├── xdr.c │ │ │ ├── xdr_array.c │ │ │ ├── xdr_float.c │ │ │ ├── xdr_float_vax.c │ │ │ ├── xdr_mem.c │ │ │ ├── xdr_private.c │ │ │ ├── xdr_private.h │ │ │ ├── xdr_rec.c │ │ │ ├── xdr_reference.c │ │ │ ├── xdr_sizeof.c │ │ │ └── xdr_stdio.c │ ├── libm │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── common │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── acoshl.c │ │ │ ├── acosl.c │ │ │ ├── asinhl.c │ │ │ ├── asinl.c │ │ │ ├── atan2l.c │ │ │ ├── atanhl.c │ │ │ ├── atanl.c │ │ │ ├── cbrtl.c │ │ │ ├── ceill.c │ │ │ ├── copysignl.c │ │ │ ├── cosf.c │ │ │ ├── coshl.c │ │ │ ├── cosl.c │ │ │ ├── erfcl.c │ │ │ ├── erfl.c │ │ │ ├── exp.c │ │ │ ├── exp2.c │ │ │ ├── exp2l.c │ │ │ ├── exp_data.c │ │ │ ├── expl.c │ │ │ ├── expm1l.c │ │ │ ├── fabsl.c │ │ │ ├── fdiml.c │ │ │ ├── fdlibm.h │ │ │ ├── floorl.c │ │ │ ├── fmal.c │ │ │ ├── fmaxl.c │ │ │ ├── fminl.c │ │ │ ├── fmodl.c │ │ │ ├── frexpl.c │ │ │ ├── hypotl.c │ │ │ ├── ilogbl.c │ │ │ ├── isgreater.c │ │ │ ├── ldexpl.c │ │ │ ├── lgammal.c │ │ │ ├── llrintl.c │ │ │ ├── llroundl.c │ │ │ ├── local.h │ │ │ ├── log.c │ │ │ ├── log10l.c │ │ │ ├── log1pl.c │ │ │ ├── log2.c │ │ │ ├── log2_data.c │ │ │ ├── log2l.c │ │ │ ├── log_data.c │ │ │ ├── logbl.c │ │ │ ├── logl.c │ │ │ ├── lrintl.c │ │ │ ├── lroundl.c │ │ │ ├── math_config.h │ │ │ ├── math_err.c │ │ │ ├── math_errf.c │ │ │ ├── modfl.c │ │ │ ├── nanl.c │ │ │ ├── nearbyintl.c │ │ │ ├── nextafterl.c │ │ │ ├── nexttoward.c │ │ │ ├── nexttowardf.c │ │ │ ├── nexttowardl.c │ │ │ ├── pow.c │ │ │ ├── pow_log_data.c │ │ │ ├── powl.c │ │ │ ├── remainderl.c │ │ │ ├── remquol.c │ │ │ ├── rintl.c │ │ │ ├── roundl.c │ │ │ ├── s_cbrt.c │ │ │ ├── s_copysign.c │ │ │ ├── s_exp10.c │ │ │ ├── s_expm1.c │ │ │ ├── s_fdim.c │ │ │ ├── s_finite.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmin.c │ │ │ ├── s_fpclassify.c │ │ │ ├── s_ilogb.c │ │ │ ├── s_infinity.c │ │ │ ├── s_isinf.c │ │ │ ├── s_isinfd.c │ │ │ ├── s_isnan.c │ │ │ ├── s_isnand.c │ │ │ ├── s_lib_ver.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llround.c │ │ │ ├── s_log1p.c │ │ │ ├── s_log2.c │ │ │ ├── s_logb.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lround.c │ │ │ ├── s_modf.c │ │ │ ├── s_nan.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nextafter.c │ │ │ ├── s_pow10.c │ │ │ ├── s_remquo.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_scalbln.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_signbit.c │ │ │ ├── s_trunc.c │ │ │ ├── scalblnl.c │ │ │ ├── scalbnl.c │ │ │ ├── sf_cbrt.c │ │ │ ├── sf_copysign.c │ │ │ ├── sf_exp.c │ │ │ ├── sf_exp10.c │ │ │ ├── sf_exp2.c │ │ │ ├── sf_exp2_data.c │ │ │ ├── sf_expm1.c │ │ │ ├── sf_fdim.c │ │ │ ├── sf_finite.c │ │ │ ├── sf_fma.c │ │ │ ├── sf_fmax.c │ │ │ ├── sf_fmin.c │ │ │ ├── sf_fpclassify.c │ │ │ ├── sf_ilogb.c │ │ │ ├── sf_infinity.c │ │ │ ├── sf_isinf.c │ │ │ ├── sf_isinff.c │ │ │ ├── sf_isnan.c │ │ │ ├── sf_isnanf.c │ │ │ ├── sf_llrint.c │ │ │ ├── sf_llround.c │ │ │ ├── sf_log.c │ │ │ ├── sf_log1p.c │ │ │ ├── sf_log2.c │ │ │ ├── sf_log2_data.c │ │ │ ├── sf_log_data.c │ │ │ ├── sf_logb.c │ │ │ ├── sf_lrint.c │ │ │ ├── sf_lround.c │ │ │ ├── sf_modf.c │ │ │ ├── sf_nan.c │ │ │ ├── sf_nearbyint.c │ │ │ ├── sf_nextafter.c │ │ │ ├── sf_pow.c │ │ │ ├── sf_pow10.c │ │ │ ├── sf_pow_log2_data.c │ │ │ ├── sf_remquo.c │ │ │ ├── sf_rint.c │ │ │ ├── sf_round.c │ │ │ ├── sf_scalbln.c │ │ │ ├── sf_scalbn.c │ │ │ ├── sf_trunc.c │ │ │ ├── sincosf.c │ │ │ ├── sincosf.h │ │ │ ├── sincosf_data.c │ │ │ ├── sinf.c │ │ │ ├── sinhl.c │ │ │ ├── sinl.c │ │ │ ├── sl_finite.c │ │ │ ├── sqrtl.c │ │ │ ├── tanhl.c │ │ │ ├── tanl.c │ │ │ ├── tgammal.c │ │ │ └── truncl.c │ │ ├── complex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cabs.c │ │ │ ├── cabsf.c │ │ │ ├── cabsl.c │ │ │ ├── cacos.c │ │ │ ├── cacosf.c │ │ │ ├── cacosh.c │ │ │ ├── cacoshf.c │ │ │ ├── cacoshl.c │ │ │ ├── cacosl.c │ │ │ ├── carg.c │ │ │ ├── cargf.c │ │ │ ├── cargl.c │ │ │ ├── casin.c │ │ │ ├── casinf.c │ │ │ ├── casinh.c │ │ │ ├── casinhf.c │ │ │ ├── casinhl.c │ │ │ ├── casinl.c │ │ │ ├── catan.c │ │ │ ├── catanf.c │ │ │ ├── catanh.c │ │ │ ├── catanhf.c │ │ │ ├── catanhl.c │ │ │ ├── catanl.c │ │ │ ├── ccos.c │ │ │ ├── ccosf.c │ │ │ ├── ccosh.c │ │ │ ├── ccoshf.c │ │ │ ├── ccoshl.c │ │ │ ├── ccosl.c │ │ │ ├── cephes_subr.c │ │ │ ├── cephes_subr.h │ │ │ ├── cephes_subrf.c │ │ │ ├── cephes_subrf.h │ │ │ ├── cephes_subrl.c │ │ │ ├── cephes_subrl.h │ │ │ ├── cexp.c │ │ │ ├── cexpf.c │ │ │ ├── cexpl.c │ │ │ ├── cimag.c │ │ │ ├── cimagf.c │ │ │ ├── cimagl.c │ │ │ ├── clog.c │ │ │ ├── clog10.c │ │ │ ├── clog10f.c │ │ │ ├── clogf.c │ │ │ ├── clogl.c │ │ │ ├── complex.tex │ │ │ ├── conj.c │ │ │ ├── conjf.c │ │ │ ├── conjl.c │ │ │ ├── cpow.c │ │ │ ├── cpowf.c │ │ │ ├── cpowl.c │ │ │ ├── cproj.c │ │ │ ├── cprojf.c │ │ │ ├── cprojl.c │ │ │ ├── creal.c │ │ │ ├── crealf.c │ │ │ ├── creall.c │ │ │ ├── csin.c │ │ │ ├── csinf.c │ │ │ ├── csinh.c │ │ │ ├── csinhf.c │ │ │ ├── csinhl.c │ │ │ ├── csinl.c │ │ │ ├── csqrt.c │ │ │ ├── csqrtf.c │ │ │ ├── csqrtl.c │ │ │ ├── ctan.c │ │ │ ├── ctanf.c │ │ │ ├── ctanh.c │ │ │ ├── ctanhf.c │ │ │ ├── ctanhl.c │ │ │ └── ctanl.c │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.in │ │ ├── fenv │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fe_dfl_env.c │ │ │ ├── feclearexcept.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexceptflag.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcept.c │ │ │ ├── fenv.tex │ │ │ ├── fenv_stub.c │ │ │ ├── feraiseexcept.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetexceptflag.c │ │ │ ├── fesetround.c │ │ │ ├── fetestexcept.c │ │ │ └── feupdateenv.c │ │ ├── libm.in.xml │ │ ├── libm.texinfo │ │ ├── machine │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aarch64 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── ef_sqrt.c │ │ │ │ ├── s_ceil.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_fma.c │ │ │ │ ├── s_fmax.c │ │ │ │ ├── s_fmin.c │ │ │ │ ├── s_llrint.c │ │ │ │ ├── s_llround.c │ │ │ │ ├── s_lrint.c │ │ │ │ ├── s_lround.c │ │ │ │ ├── s_nearbyint.c │ │ │ │ ├── s_rint.c │ │ │ │ ├── s_round.c │ │ │ │ ├── s_trunc.c │ │ │ │ ├── sf_ceil.c │ │ │ │ ├── sf_fabs.c │ │ │ │ ├── sf_floor.c │ │ │ │ ├── sf_fma.c │ │ │ │ ├── sf_fmax.c │ │ │ │ ├── sf_fmin.c │ │ │ │ ├── sf_llrint.c │ │ │ │ ├── sf_llround.c │ │ │ │ ├── sf_lrint.c │ │ │ │ ├── sf_lround.c │ │ │ │ ├── sf_nearbyint.c │ │ │ │ ├── sf_rint.c │ │ │ │ ├── sf_round.c │ │ │ │ └── sf_trunc.c │ │ │ ├── aclocal.m4 │ │ │ ├── arm │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── ef_sqrt.c │ │ │ │ ├── s_ceil.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_nearbyint.c │ │ │ │ ├── s_rint.c │ │ │ │ ├── s_round.c │ │ │ │ ├── s_trunc.c │ │ │ │ ├── sf_ceil.c │ │ │ │ ├── sf_floor.c │ │ │ │ ├── sf_nearbyint.c │ │ │ │ ├── sf_rint.c │ │ │ │ ├── sf_round.c │ │ │ │ └── sf_trunc.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── i386 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── f_atan2.S │ │ │ │ ├── f_atan2f.S │ │ │ │ ├── f_exp.c │ │ │ │ ├── f_expf.c │ │ │ │ ├── f_frexp.S │ │ │ │ ├── f_frexpf.S │ │ │ │ ├── f_ldexp.S │ │ │ │ ├── f_ldexpf.S │ │ │ │ ├── f_llrint.c │ │ │ │ ├── f_llrintf.c │ │ │ │ ├── f_llrintl.c │ │ │ │ ├── f_log.S │ │ │ │ ├── f_log10.S │ │ │ │ ├── f_log10f.S │ │ │ │ ├── f_logf.S │ │ │ │ ├── f_lrint.c │ │ │ │ ├── f_lrintf.c │ │ │ │ ├── f_lrintl.c │ │ │ │ ├── f_math.h │ │ │ │ ├── f_pow.c │ │ │ │ ├── f_powf.c │ │ │ │ ├── f_rint.c │ │ │ │ ├── f_rintf.c │ │ │ │ ├── f_rintl.c │ │ │ │ ├── f_tan.S │ │ │ │ ├── f_tanf.S │ │ │ │ ├── feclearexcept.c │ │ │ │ ├── fegetenv.c │ │ │ │ ├── fegetexceptflag.c │ │ │ │ ├── fegetround.c │ │ │ │ ├── feholdexcept.c │ │ │ │ ├── fenv.c │ │ │ │ ├── feraiseexcept.c │ │ │ │ ├── fesetenv.c │ │ │ │ ├── fesetexceptflag.c │ │ │ │ ├── fesetround.c │ │ │ │ ├── fetestexcept.c │ │ │ │ ├── feupdateenv.c │ │ │ │ └── i386mach.h │ │ │ ├── nds32 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── w_sqrt.S │ │ │ │ └── wf_sqrt.S │ │ │ ├── powerpc │ │ │ │ ├── Makefile.am │ │ │ │ ├── configure.in │ │ │ │ ├── feclearexcept.c │ │ │ │ ├── fegetenv.c │ │ │ │ ├── fegetexceptflag.c │ │ │ │ ├── fegetround.c │ │ │ │ ├── feholdexcept.c │ │ │ │ ├── fenv.c │ │ │ │ ├── feraiseexcept.c │ │ │ │ ├── fesetenv.c │ │ │ │ ├── fesetexceptflag.c │ │ │ │ ├── fesetround.c │ │ │ │ ├── fetestexcept.c │ │ │ │ └── feupdateenv.c │ │ │ ├── pru │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── fpclassify.c │ │ │ │ ├── fpclassifyf.c │ │ │ │ ├── isfinite.c │ │ │ │ ├── isfinitef.c │ │ │ │ ├── isinf.c │ │ │ │ ├── isinff.c │ │ │ │ ├── isnan.c │ │ │ │ ├── isnanf.c │ │ │ │ ├── isnormal.c │ │ │ │ └── isnormalf.c │ │ │ ├── riscv │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── fe_dfl_env.c │ │ │ │ ├── feclearexcept.c │ │ │ │ ├── fegetenv.c │ │ │ │ ├── fegetexceptflag.c │ │ │ │ ├── fegetround.c │ │ │ │ ├── feholdexcept.c │ │ │ │ ├── feraiseexcept.c │ │ │ │ ├── fesetenv.c │ │ │ │ ├── fesetexceptflag.c │ │ │ │ ├── fesetround.c │ │ │ │ ├── fetestexcept.c │ │ │ │ └── feupdateenv.c │ │ │ ├── spu │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── fe_dfl_env.c │ │ │ │ ├── feclearexcept.c │ │ │ │ ├── fegetenv.c │ │ │ │ ├── fegetexceptflag.c │ │ │ │ ├── fegetround.c │ │ │ │ ├── feholdexcept.c │ │ │ │ ├── feraiseexcept.c │ │ │ │ ├── fesetenv.c │ │ │ │ ├── fesetexceptflag.c │ │ │ │ ├── fesetround.c │ │ │ │ ├── fetestexcept.c │ │ │ │ ├── feupdateenv.c │ │ │ │ ├── headers │ │ │ │ │ ├── acos.h │ │ │ │ │ ├── acosd2.h │ │ │ │ │ ├── acosf.h │ │ │ │ │ ├── acosf4.h │ │ │ │ │ ├── acosh.h │ │ │ │ │ ├── acoshd2.h │ │ │ │ │ ├── acoshf.h │ │ │ │ │ ├── acoshf4.h │ │ │ │ │ ├── asin.h │ │ │ │ │ ├── asind2.h │ │ │ │ │ ├── asinf.h │ │ │ │ │ ├── asinf4.h │ │ │ │ │ ├── asinh.h │ │ │ │ │ ├── asinhd2.h │ │ │ │ │ ├── asinhf.h │ │ │ │ │ ├── asinhf4.h │ │ │ │ │ ├── atan.h │ │ │ │ │ ├── atan2.h │ │ │ │ │ ├── atan2d2.h │ │ │ │ │ ├── atan2f.h │ │ │ │ │ ├── atan2f4.h │ │ │ │ │ ├── atand2.h │ │ │ │ │ ├── atanf.h │ │ │ │ │ ├── atanf4.h │ │ │ │ │ ├── atanh.h │ │ │ │ │ ├── atanhd2.h │ │ │ │ │ ├── atanhf.h │ │ │ │ │ ├── atanhf4.h │ │ │ │ │ ├── cbrt.h │ │ │ │ │ ├── cbrtf.h │ │ │ │ │ ├── ceil.h │ │ │ │ │ ├── ceilf.h │ │ │ │ │ ├── copysign.h │ │ │ │ │ ├── copysignf.h │ │ │ │ │ ├── cos.h │ │ │ │ │ ├── cos_sin.h │ │ │ │ │ ├── cosd2.h │ │ │ │ │ ├── cosf.h │ │ │ │ │ ├── cosf4.h │ │ │ │ │ ├── cosh.h │ │ │ │ │ ├── coshd2.h │ │ │ │ │ ├── coshf.h │ │ │ │ │ ├── coshf4.h │ │ │ │ │ ├── divd2.h │ │ │ │ │ ├── divf4.h │ │ │ │ │ ├── dom_chkd_less_than.h │ │ │ │ │ ├── dom_chkd_negone_one.h │ │ │ │ │ ├── dom_chkf_less_than.h │ │ │ │ │ ├── dom_chkf_negone_one.h │ │ │ │ │ ├── erf.h │ │ │ │ │ ├── erf_utils.h │ │ │ │ │ ├── erfc.h │ │ │ │ │ ├── erfcd2.h │ │ │ │ │ ├── erfcf.h │ │ │ │ │ ├── erfcf4.h │ │ │ │ │ ├── erfd2.h │ │ │ │ │ ├── erff.h │ │ │ │ │ ├── erff4.h │ │ │ │ │ ├── exp.h │ │ │ │ │ ├── exp2.h │ │ │ │ │ ├── exp2d2.h │ │ │ │ │ ├── exp2f.h │ │ │ │ │ ├── exp2f4.h │ │ │ │ │ ├── expd2.h │ │ │ │ │ ├── expf.h │ │ │ │ │ ├── expf4.h │ │ │ │ │ ├── expm1.h │ │ │ │ │ ├── expm1d2.h │ │ │ │ │ ├── expm1f.h │ │ │ │ │ ├── expm1f4.h │ │ │ │ │ ├── fabs.h │ │ │ │ │ ├── fabsf.h │ │ │ │ │ ├── fdim.h │ │ │ │ │ ├── fdimf.h │ │ │ │ │ ├── feclearexcept.h │ │ │ │ │ ├── fefpscr.h │ │ │ │ │ ├── fegetenv.h │ │ │ │ │ ├── fegetexceptflag.h │ │ │ │ │ ├── fegetround.h │ │ │ │ │ ├── feholdexcept.h │ │ │ │ │ ├── feraiseexcept.h │ │ │ │ │ ├── fesetenv.h │ │ │ │ │ ├── fesetexceptflag.h │ │ │ │ │ ├── fesetround.h │ │ │ │ │ ├── fetestexcept.h │ │ │ │ │ ├── feupdateenv.h │ │ │ │ │ ├── floor.h │ │ │ │ │ ├── floord2.h │ │ │ │ │ ├── floorf.h │ │ │ │ │ ├── floorf4.h │ │ │ │ │ ├── fma.h │ │ │ │ │ ├── fmaf.h │ │ │ │ │ ├── fmax.h │ │ │ │ │ ├── fmaxf.h │ │ │ │ │ ├── fmin.h │ │ │ │ │ ├── fminf.h │ │ │ │ │ ├── fmod.h │ │ │ │ │ ├── fmodf.h │ │ │ │ │ ├── frexp.h │ │ │ │ │ ├── frexpf.h │ │ │ │ │ ├── hypot.h │ │ │ │ │ ├── hypotd2.h │ │ │ │ │ ├── hypotf.h │ │ │ │ │ ├── hypotf4.h │ │ │ │ │ ├── ilogb.h │ │ │ │ │ ├── ilogbf.h │ │ │ │ │ ├── isnan.h │ │ │ │ │ ├── isnand2.h │ │ │ │ │ ├── isnanf.h │ │ │ │ │ ├── isnanf4.h │ │ │ │ │ ├── ldexp.h │ │ │ │ │ ├── ldexpd2.h │ │ │ │ │ ├── ldexpf.h │ │ │ │ │ ├── ldexpf4.h │ │ │ │ │ ├── lgamma.h │ │ │ │ │ ├── lgammad2.h │ │ │ │ │ ├── lgammaf.h │ │ │ │ │ ├── lgammaf4.h │ │ │ │ │ ├── llrint.h │ │ │ │ │ ├── llrintf.h │ │ │ │ │ ├── llround.h │ │ │ │ │ ├── llroundf.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── log10.h │ │ │ │ │ ├── log10d2.h │ │ │ │ │ ├── log10f.h │ │ │ │ │ ├── log1p.h │ │ │ │ │ ├── log1pd2.h │ │ │ │ │ ├── log1pf.h │ │ │ │ │ ├── log1pf4.h │ │ │ │ │ ├── log2.h │ │ │ │ │ ├── log2d2.h │ │ │ │ │ ├── log2f.h │ │ │ │ │ ├── log2f4.h │ │ │ │ │ ├── logbf.h │ │ │ │ │ ├── logbf4.h │ │ │ │ │ ├── logd2.h │ │ │ │ │ ├── logf.h │ │ │ │ │ ├── logf4.h │ │ │ │ │ ├── lrint.h │ │ │ │ │ ├── lrintf.h │ │ │ │ │ ├── lround.h │ │ │ │ │ ├── lroundf.h │ │ │ │ │ ├── nearbyint.h │ │ │ │ │ ├── nearbyintf.h │ │ │ │ │ ├── nearbyintf4.h │ │ │ │ │ ├── nextafter.h │ │ │ │ │ ├── nextafterd2.h │ │ │ │ │ ├── nextafterf.h │ │ │ │ │ ├── nextafterf4.h │ │ │ │ │ ├── pow.h │ │ │ │ │ ├── powd2.h │ │ │ │ │ ├── powf.h │ │ │ │ │ ├── powf4.h │ │ │ │ │ ├── recipd2.h │ │ │ │ │ ├── recipf4.h │ │ │ │ │ ├── remainder.h │ │ │ │ │ ├── remainderf.h │ │ │ │ │ ├── remquo.h │ │ │ │ │ ├── remquof.h │ │ │ │ │ ├── rint.h │ │ │ │ │ ├── rintf.h │ │ │ │ │ ├── rintf4.h │ │ │ │ │ ├── round.h │ │ │ │ │ ├── roundf.h │ │ │ │ │ ├── scalbn.h │ │ │ │ │ ├── scalbnf.h │ │ │ │ │ ├── scalbnf4.h │ │ │ │ │ ├── signbit.h │ │ │ │ │ ├── signbitd2.h │ │ │ │ │ ├── simdmath.h │ │ │ │ │ ├── sin.h │ │ │ │ │ ├── sincos.h │ │ │ │ │ ├── sincosd2.h │ │ │ │ │ ├── sincosf.h │ │ │ │ │ ├── sincosf4.h │ │ │ │ │ ├── sind2.h │ │ │ │ │ ├── sinf.h │ │ │ │ │ ├── sinf4.h │ │ │ │ │ ├── sinh.h │ │ │ │ │ ├── sinhd2.h │ │ │ │ │ ├── sinhf.h │ │ │ │ │ ├── sinhf4.h │ │ │ │ │ ├── sqrt.h │ │ │ │ │ ├── sqrtd2.h │ │ │ │ │ ├── sqrtf.h │ │ │ │ │ ├── sqrtf4.h │ │ │ │ │ ├── tan.h │ │ │ │ │ ├── tand2.h │ │ │ │ │ ├── tanf.h │ │ │ │ │ ├── tanf4.h │ │ │ │ │ ├── tanh.h │ │ │ │ │ ├── tanhd2.h │ │ │ │ │ ├── tanhf.h │ │ │ │ │ ├── tanhf4.h │ │ │ │ │ ├── tgamma.h │ │ │ │ │ ├── tgammad2.h │ │ │ │ │ ├── tgammaf.h │ │ │ │ │ ├── tgammaf4.h │ │ │ │ │ ├── trunc.h │ │ │ │ │ ├── truncd2.h │ │ │ │ │ ├── truncf.h │ │ │ │ │ ├── truncf4.h │ │ │ │ │ └── vec_literal.h │ │ │ │ ├── llrint.c │ │ │ │ ├── llrintf.c │ │ │ │ ├── llround.c │ │ │ │ ├── llroundf.c │ │ │ │ ├── log2.c │ │ │ │ ├── log2f.c │ │ │ │ ├── s_asinh.c │ │ │ │ ├── s_atan.c │ │ │ │ ├── s_cbrt.c │ │ │ │ ├── s_ceil.c │ │ │ │ ├── s_copysign.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_erf.c │ │ │ │ ├── s_expm1.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_fdim.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_fma.c │ │ │ │ ├── s_fmax.c │ │ │ │ ├── s_fmin.c │ │ │ │ ├── s_frexp.c │ │ │ │ ├── s_ilogb.c │ │ │ │ ├── s_isnan.c │ │ │ │ ├── s_ldexp.c │ │ │ │ ├── s_log1p.c │ │ │ │ ├── s_lrint.c │ │ │ │ ├── s_lround.c │ │ │ │ ├── s_nearbyint.c │ │ │ │ ├── s_nextafter.c │ │ │ │ ├── s_remquo.c │ │ │ │ ├── s_rint.c │ │ │ │ ├── s_round.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_sin.c │ │ │ │ ├── s_tan.c │ │ │ │ ├── s_tanh.c │ │ │ │ ├── s_trunc.c │ │ │ │ ├── sf_asinh.c │ │ │ │ ├── sf_atan.c │ │ │ │ ├── sf_cbrt.c │ │ │ │ ├── sf_ceil.c │ │ │ │ ├── sf_copysign.c │ │ │ │ ├── sf_cos.c │ │ │ │ ├── sf_erf.c │ │ │ │ ├── sf_expm1.c │ │ │ │ ├── sf_fabs.c │ │ │ │ ├── sf_fdim.c │ │ │ │ ├── sf_finite.c │ │ │ │ ├── sf_floor.c │ │ │ │ ├── sf_fma.c │ │ │ │ ├── sf_fmax.c │ │ │ │ ├── sf_fmin.c │ │ │ │ ├── sf_fpclassify.c │ │ │ │ ├── sf_frexp.c │ │ │ │ ├── sf_ilogb.c │ │ │ │ ├── sf_isinf.c │ │ │ │ ├── sf_isinff.c │ │ │ │ ├── sf_isnan.c │ │ │ │ ├── sf_isnanf.c │ │ │ │ ├── sf_ldexp.c │ │ │ │ ├── sf_log1p.c │ │ │ │ ├── sf_logb.c │ │ │ │ ├── sf_lrint.c │ │ │ │ ├── sf_lround.c │ │ │ │ ├── sf_nan.c │ │ │ │ ├── sf_nearbyint.c │ │ │ │ ├── sf_nextafter.c │ │ │ │ ├── sf_remquo.c │ │ │ │ ├── sf_rint.c │ │ │ │ ├── sf_round.c │ │ │ │ ├── sf_scalbn.c │ │ │ │ ├── sf_sin.c │ │ │ │ ├── sf_tan.c │ │ │ │ ├── sf_tanh.c │ │ │ │ ├── sf_trunc.c │ │ │ │ ├── w_acos.c │ │ │ │ ├── w_acosh.c │ │ │ │ ├── w_asin.c │ │ │ │ ├── w_atan2.c │ │ │ │ ├── w_atanh.c │ │ │ │ ├── w_cosh.c │ │ │ │ ├── w_exp.c │ │ │ │ ├── w_exp2.c │ │ │ │ ├── w_fmod.c │ │ │ │ ├── w_hypot.c │ │ │ │ ├── w_lgamma.c │ │ │ │ ├── w_log.c │ │ │ │ ├── w_log10.c │ │ │ │ ├── w_pow.c │ │ │ │ ├── w_remainder.c │ │ │ │ ├── w_sincos.c │ │ │ │ ├── w_sinh.c │ │ │ │ ├── w_sqrt.c │ │ │ │ ├── w_tgamma.c │ │ │ │ ├── wf_acos.c │ │ │ │ ├── wf_acosh.c │ │ │ │ ├── wf_asin.c │ │ │ │ ├── wf_atan2.c │ │ │ │ ├── wf_atanh.c │ │ │ │ ├── wf_cosh.c │ │ │ │ ├── wf_exp.c │ │ │ │ ├── wf_exp2.c │ │ │ │ ├── wf_fmod.c │ │ │ │ ├── wf_hypot.c │ │ │ │ ├── wf_lgamma.c │ │ │ │ ├── wf_log.c │ │ │ │ ├── wf_log10.c │ │ │ │ ├── wf_pow.c │ │ │ │ ├── wf_remainder.c │ │ │ │ ├── wf_sincos.c │ │ │ │ ├── wf_sinh.c │ │ │ │ ├── wf_sqrt.c │ │ │ │ └── wf_tgamma.c │ │ │ └── x86_64 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── feclearexcept.c │ │ │ │ ├── fegetenv.c │ │ │ │ ├── fegetexceptflag.c │ │ │ │ ├── fegetround.c │ │ │ │ ├── feholdexcept.c │ │ │ │ ├── fenv.c │ │ │ │ ├── feraiseexcept.c │ │ │ │ ├── fesetenv.c │ │ │ │ ├── fesetexceptflag.c │ │ │ │ ├── fesetround.c │ │ │ │ ├── fetestexcept.c │ │ │ │ └── feupdateenv.c │ │ ├── math │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── e_acos.c │ │ │ ├── e_acosh.c │ │ │ ├── e_asin.c │ │ │ ├── e_atan2.c │ │ │ ├── e_atanh.c │ │ │ ├── e_cosh.c │ │ │ ├── e_exp.c │ │ │ ├── e_fmod.c │ │ │ ├── e_hypot.c │ │ │ ├── e_j0.c │ │ │ ├── e_j1.c │ │ │ ├── e_jn.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_remainder.c │ │ │ ├── e_scalb.c │ │ │ ├── e_sinh.c │ │ │ ├── e_sqrt.c │ │ │ ├── ef_acos.c │ │ │ ├── ef_acosh.c │ │ │ ├── ef_asin.c │ │ │ ├── ef_atan2.c │ │ │ ├── ef_atanh.c │ │ │ ├── ef_cosh.c │ │ │ ├── ef_exp.c │ │ │ ├── ef_fmod.c │ │ │ ├── ef_hypot.c │ │ │ ├── ef_j0.c │ │ │ ├── ef_j1.c │ │ │ ├── ef_jn.c │ │ │ ├── ef_log.c │ │ │ ├── ef_log10.c │ │ │ ├── ef_pow.c │ │ │ ├── ef_rem_pio2.c │ │ │ ├── ef_remainder.c │ │ │ ├── ef_scalb.c │ │ │ ├── ef_sinh.c │ │ │ ├── ef_sqrt.c │ │ │ ├── el_hypot.c │ │ │ ├── er_gamma.c │ │ │ ├── er_lgamma.c │ │ │ ├── erf_gamma.c │ │ │ ├── erf_lgamma.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── k_standard.c │ │ │ ├── k_tan.c │ │ │ ├── kf_cos.c │ │ │ ├── kf_rem_pio2.c │ │ │ ├── kf_sin.c │ │ │ ├── kf_tan.c │ │ │ ├── math.tex │ │ │ ├── s_asinh.c │ │ │ ├── s_atan.c │ │ │ ├── s_ceil.c │ │ │ ├── s_cos.c │ │ │ ├── s_erf.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_frexp.c │ │ │ ├── s_ldexp.c │ │ │ ├── s_signif.c │ │ │ ├── s_sin.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanh.c │ │ │ ├── sf_asinh.c │ │ │ ├── sf_atan.c │ │ │ ├── sf_ceil.c │ │ │ ├── sf_cos.c │ │ │ ├── sf_erf.c │ │ │ ├── sf_fabs.c │ │ │ ├── sf_floor.c │ │ │ ├── sf_frexp.c │ │ │ ├── sf_ldexp.c │ │ │ ├── sf_signif.c │ │ │ ├── sf_sin.c │ │ │ ├── sf_tan.c │ │ │ ├── sf_tanh.c │ │ │ ├── w_acos.c │ │ │ ├── w_acosh.c │ │ │ ├── w_asin.c │ │ │ ├── w_atan2.c │ │ │ ├── w_atanh.c │ │ │ ├── w_cosh.c │ │ │ ├── w_drem.c │ │ │ ├── w_exp.c │ │ │ ├── w_exp2.c │ │ │ ├── w_fmod.c │ │ │ ├── w_gamma.c │ │ │ ├── w_hypot.c │ │ │ ├── w_j0.c │ │ │ ├── w_j1.c │ │ │ ├── w_jn.c │ │ │ ├── w_lgamma.c │ │ │ ├── w_log.c │ │ │ ├── w_log10.c │ │ │ ├── w_pow.c │ │ │ ├── w_remainder.c │ │ │ ├── w_scalb.c │ │ │ ├── w_sincos.c │ │ │ ├── w_sinh.c │ │ │ ├── w_sqrt.c │ │ │ ├── w_tgamma.c │ │ │ ├── wf_acos.c │ │ │ ├── wf_acosh.c │ │ │ ├── wf_asin.c │ │ │ ├── wf_atan2.c │ │ │ ├── wf_atanh.c │ │ │ ├── wf_cosh.c │ │ │ ├── wf_drem.c │ │ │ ├── wf_exp.c │ │ │ ├── wf_exp2.c │ │ │ ├── wf_fmod.c │ │ │ ├── wf_gamma.c │ │ │ ├── wf_hypot.c │ │ │ ├── wf_j0.c │ │ │ ├── wf_j1.c │ │ │ ├── wf_jn.c │ │ │ ├── wf_lgamma.c │ │ │ ├── wf_log.c │ │ │ ├── wf_log10.c │ │ │ ├── wf_log2.c │ │ │ ├── wf_pow.c │ │ │ ├── wf_remainder.c │ │ │ ├── wf_scalb.c │ │ │ ├── wf_sincos.c │ │ │ ├── wf_sinh.c │ │ │ ├── wf_sqrt.c │ │ │ ├── wf_tgamma.c │ │ │ ├── wr_gamma.c │ │ │ ├── wr_lgamma.c │ │ │ ├── wrf_gamma.c │ │ │ └── wrf_lgamma.c │ │ ├── mathfp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── e_acosh.c │ │ │ ├── e_atanh.c │ │ │ ├── e_hypot.c │ │ │ ├── e_j0.c │ │ │ ├── e_j1.c │ │ │ ├── e_remainder.c │ │ │ ├── e_scalb.c │ │ │ ├── ef_acosh.c │ │ │ ├── ef_atanh.c │ │ │ ├── ef_hypot.c │ │ │ ├── ef_j0.c │ │ │ ├── ef_j1.c │ │ │ ├── ef_remainder.c │ │ │ ├── ef_scalb.c │ │ │ ├── er_gamma.c │ │ │ ├── er_lgamma.c │ │ │ ├── erf_gamma.c │ │ │ ├── erf_lgamma.c │ │ │ ├── mathfp.tex │ │ │ ├── s_acos.c │ │ │ ├── s_asin.c │ │ │ ├── s_asine.c │ │ │ ├── s_asinh.c │ │ │ ├── s_atan.c │ │ │ ├── s_atan2.c │ │ │ ├── s_atangent.c │ │ │ ├── s_ceil.c │ │ │ ├── s_cos.c │ │ │ ├── s_cosh.c │ │ │ ├── s_erf.c │ │ │ ├── s_exp.c │ │ │ ├── s_exp2.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_fmod.c │ │ │ ├── s_frexp.c │ │ │ ├── s_ispos.c │ │ │ ├── s_ldexp.c │ │ │ ├── s_log.c │ │ │ ├── s_log10.c │ │ │ ├── s_logarithm.c │ │ │ ├── s_mathcnst.c │ │ │ ├── s_numtest.c │ │ │ ├── s_pow.c │ │ │ ├── s_signif.c │ │ │ ├── s_sin.c │ │ │ ├── s_sincos.c │ │ │ ├── s_sine.c │ │ │ ├── s_sineh.c │ │ │ ├── s_sinf.c │ │ │ ├── s_sinh.c │ │ │ ├── s_sqrt.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanh.c │ │ │ ├── s_tgamma.c │ │ │ ├── sf_acos.c │ │ │ ├── sf_asin.c │ │ │ ├── sf_asine.c │ │ │ ├── sf_asinh.c │ │ │ ├── sf_atan.c │ │ │ ├── sf_atan2.c │ │ │ ├── sf_atangent.c │ │ │ ├── sf_ceil.c │ │ │ ├── sf_cos.c │ │ │ ├── sf_cosh.c │ │ │ ├── sf_erf.c │ │ │ ├── sf_exp.c │ │ │ ├── sf_exp2.c │ │ │ ├── sf_fabs.c │ │ │ ├── sf_floor.c │ │ │ ├── sf_fmod.c │ │ │ ├── sf_frexp.c │ │ │ ├── sf_ispos.c │ │ │ ├── sf_ldexp.c │ │ │ ├── sf_log.c │ │ │ ├── sf_log10.c │ │ │ ├── sf_logarithm.c │ │ │ ├── sf_numtest.c │ │ │ ├── sf_pow.c │ │ │ ├── sf_signif.c │ │ │ ├── sf_sin.c │ │ │ ├── sf_sincos.c │ │ │ ├── sf_sine.c │ │ │ ├── sf_sineh.c │ │ │ ├── sf_sinh.c │ │ │ ├── sf_sqrt.c │ │ │ ├── sf_tan.c │ │ │ ├── sf_tanh.c │ │ │ ├── sf_tgamma.c │ │ │ ├── w_cabs.c │ │ │ ├── w_drem.c │ │ │ ├── w_jn.c │ │ │ ├── wf_cabs.c │ │ │ ├── wf_drem.c │ │ │ ├── wf_jn.c │ │ │ └── zmath.h │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── acos_vec.c │ │ │ ├── acosf_vec.c │ │ │ ├── acosh_vec.c │ │ │ ├── acoshf_vec.c │ │ │ ├── asin_vec.c │ │ │ ├── asinf_vec.c │ │ │ ├── asinh_vec.c │ │ │ ├── asinhf_vec.c │ │ │ ├── atan2_vec.c │ │ │ ├── atan2f_vec.c │ │ │ ├── atan_vec.c │ │ │ ├── atanf_vec.c │ │ │ ├── atanh_vec.c │ │ │ ├── atanhf_vec.c │ │ │ ├── ceil_vec.c │ │ │ ├── ceilf_vec.c │ │ │ ├── conv_vec.c │ │ │ ├── convert.c │ │ │ ├── cos_vec.c │ │ │ ├── cosf_vec.c │ │ │ ├── cosh_vec.c │ │ │ ├── coshf_vec.c │ │ │ ├── dcvt.c │ │ │ ├── dvec.c │ │ │ ├── erf_vec.c │ │ │ ├── erfc_vec.c │ │ │ ├── erfcf_vec.c │ │ │ ├── erff_vec.c │ │ │ ├── exp_vec.c │ │ │ ├── expf_vec.c │ │ │ ├── fabs_vec.c │ │ │ ├── fabsf_vec.c │ │ │ ├── floor_vec.c │ │ │ ├── floorf_vec.c │ │ │ ├── fmod_vec.c │ │ │ ├── fmodf_vec.c │ │ │ ├── gamma_vec.c │ │ │ ├── gammaf_vec.c │ │ │ ├── hypot_vec.c │ │ │ ├── hypotf_vec.c │ │ │ ├── iconv_vec.c │ │ │ ├── j0_vec.c │ │ │ ├── j0f_vec.c │ │ │ ├── j1_vec.c │ │ │ ├── j1f_vec.c │ │ │ ├── jn_vec.c │ │ │ ├── jnf_vec.c │ │ │ ├── log10_vec.c │ │ │ ├── log10f_vec.c │ │ │ ├── log1p_vec.c │ │ │ ├── log1pf_vec.c │ │ │ ├── log2_vec.c │ │ │ ├── log2f_vec.c │ │ │ ├── log_vec.c │ │ │ ├── logf_vec.c │ │ │ ├── math.c │ │ │ ├── math2.c │ │ │ ├── sin_vec.c │ │ │ ├── sinf_vec.c │ │ │ ├── sinh_vec.c │ │ │ ├── sinhf_vec.c │ │ │ ├── sprint_ivec.c │ │ │ ├── sprint_vec.c │ │ │ ├── sqrt_vec.c │ │ │ ├── sqrtf_vec.c │ │ │ ├── string.c │ │ │ ├── tan_vec.c │ │ │ ├── tanf_vec.c │ │ │ ├── tanh_vec.c │ │ │ ├── tanhf_vec.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ ├── test_ieee.c │ │ │ ├── test_is.c │ │ │ ├── y0_vec.c │ │ │ ├── y0f_vec.c │ │ │ ├── y1_vec.c │ │ │ ├── y1f_vec.c │ │ │ ├── yn_vec.c │ │ │ └── ynf_vec.c │ ├── man.xsl │ ├── newlib.hin │ ├── refcontainers.xslt │ ├── stamp-h.in │ └── testsuite │ │ ├── config │ │ └── default.exp │ │ ├── include │ │ └── check.h │ │ ├── lib │ │ ├── checkoutput.exp │ │ ├── flags.exp │ │ ├── newlib.exp │ │ └── passfail.exp │ │ ├── newlib.elix │ │ ├── elix.exp │ │ └── tmmap.c │ │ ├── newlib.iconv │ │ ├── iconv.exp │ │ ├── iconvjp.c │ │ ├── iconvnm.c │ │ └── iconvru.c │ │ ├── newlib.locale │ │ ├── UTF-8.c │ │ ├── UTF-8.exp │ │ └── locale.exp │ │ ├── newlib.search │ │ ├── hsearchtest.c │ │ └── hsearchtest.exp │ │ ├── newlib.stdio │ │ ├── nulprintf.c │ │ ├── stdio.exp │ │ └── swprintf.c │ │ ├── newlib.stdlib │ │ ├── atexit.c │ │ ├── atexit.exp │ │ ├── size_max.c │ │ └── stdlib.exp │ │ ├── newlib.string │ │ ├── memcpy-1.c │ │ ├── memmove1.c │ │ ├── strcmp-1.c │ │ ├── string.exp │ │ └── tstring.c │ │ └── newlib.wctype │ │ ├── tiswctype.c │ │ ├── twctrans.c │ │ ├── twctype.c │ │ └── wctype.exp ├── setup.com ├── src-release ├── symlink-tree ├── texinfo │ └── texinfo.tex ├── winsup │ ├── CONTRIBUTORS │ ├── COPYING │ ├── COPYING.LIB │ ├── CVSChangeLogs.old │ │ ├── ChangeLog-2015 │ │ ├── cygserver │ │ │ ├── ChangeLog-2015 │ │ │ └── ChangeLog.64bit │ │ ├── cygwin │ │ │ ├── ChangeLog-1995 │ │ │ ├── ChangeLog-1996 │ │ │ ├── ChangeLog-1997 │ │ │ ├── ChangeLog-1998 │ │ │ ├── ChangeLog-1999 │ │ │ ├── ChangeLog-2000 │ │ │ ├── ChangeLog-2001 │ │ │ ├── ChangeLog-2002 │ │ │ ├── ChangeLog-2003 │ │ │ ├── ChangeLog-2004 │ │ │ ├── ChangeLog-2005 │ │ │ ├── ChangeLog-2006 │ │ │ ├── ChangeLog-2007 │ │ │ ├── ChangeLog-2008 │ │ │ ├── ChangeLog-2009 │ │ │ ├── ChangeLog-2010 │ │ │ ├── ChangeLog-2011 │ │ │ ├── ChangeLog-2012 │ │ │ ├── ChangeLog-2013 │ │ │ ├── ChangeLog-2014 │ │ │ ├── ChangeLog-2015 │ │ │ └── ChangeLog.64bit │ │ ├── doc │ │ │ └── ChangeLog-2015 │ │ ├── lsaauth │ │ │ ├── ChangeLog-2015 │ │ │ └── ChangeLog.64bit │ │ ├── testsuite │ │ │ └── ChangeLog-2015 │ │ └── utils │ │ │ ├── ChangeLog-2000 │ │ │ ├── ChangeLog-2015 │ │ │ └── ChangeLog.64bit │ ├── CYGWIN_LICENSE │ ├── Makefile.common │ ├── Makefile.in │ ├── README │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autogen.sh │ ├── c++wrap │ ├── ccwrap │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── configure.cygwin │ ├── cygserver │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── bsd_helper.cc │ │ ├── bsd_helper.h │ │ ├── bsd_log.cc │ │ ├── bsd_log.h │ │ ├── bsd_mutex.cc │ │ ├── bsd_mutex.h │ │ ├── client.cc │ │ ├── configure │ │ ├── configure.ac │ │ ├── cygserver-config │ │ ├── cygserver.cc │ │ ├── cygserver.conf │ │ ├── msg.cc │ │ ├── process.cc │ │ ├── process.h │ │ ├── pwdgrp.cc │ │ ├── sem.cc │ │ ├── setpwd.cc │ │ ├── shm.cc │ │ ├── sysv_msg.cc │ │ ├── sysv_sem.cc │ │ ├── sysv_shm.cc │ │ ├── threaded_queue.cc │ │ ├── threaded_queue.h │ │ ├── transport.cc │ │ ├── transport.h │ │ ├── transport_pipes.cc │ │ ├── transport_pipes.h │ │ └── woutsup.h │ ├── cygwin │ │ ├── DevNotes │ │ ├── Makefile.in │ │ ├── ROADMAP │ │ ├── aclocal.m4 │ │ ├── advapi32.cc │ │ ├── aio.cc │ │ ├── analyze_sigfe │ │ ├── assert.cc │ │ ├── autogen.sh │ │ ├── autoload.cc │ │ ├── automode.c │ │ ├── binmode.c │ │ ├── child_info.h │ │ ├── clock.cc │ │ ├── clock.h │ │ ├── collate.h │ │ ├── common.din │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── cpuid.h │ │ ├── crt0.c │ │ ├── ctype.cc │ │ ├── cxx.cc │ │ ├── cygerrno.h │ │ ├── cygheap.cc │ │ ├── cygheap.h │ │ ├── cygheap_malloc.h │ │ ├── cyglsa.h │ │ ├── cygmagic │ │ ├── cygmalloc.h │ │ ├── cygserver.h │ │ ├── cygserver_ipc.h │ │ ├── cygserver_msg.h │ │ ├── cygserver_pwdgrp.h │ │ ├── cygserver_sem.h │ │ ├── cygserver_setpwd.h │ │ ├── cygserver_shm.h │ │ ├── cygthread.cc │ │ ├── cygthread.h │ │ ├── cygtls.cc │ │ ├── cygtls.h │ │ ├── cygtls_padsize.h │ │ ├── cygwait.cc │ │ ├── cygwait.h │ │ ├── cygwin-cxx.h │ │ ├── cygwin-shilka │ │ ├── cygwin.ldif │ │ ├── cygwin.sc.in │ │ ├── cygwin_version.h │ │ ├── cygxdr.cc │ │ ├── cygxdr.h │ │ ├── dcrt0.cc │ │ ├── debug.cc │ │ ├── debug.h │ │ ├── devices.cc │ │ ├── devices.h │ │ ├── devices.in │ │ ├── dir.cc │ │ ├── dlfcn.cc │ │ ├── dll_init.cc │ │ ├── dll_init.h │ │ ├── dllfixdbg │ │ ├── dtable.cc │ │ ├── dtable.h │ │ ├── environ.cc │ │ ├── environ.h │ │ ├── errno.cc │ │ ├── exception.h │ │ ├── exceptions.cc │ │ ├── exec.cc │ │ ├── external.cc │ │ ├── fcntl.cc │ │ ├── fenv.cc │ │ ├── fhandler.cc │ │ ├── fhandler.h │ │ ├── fhandler_clipboard.cc │ │ ├── fhandler_console.cc │ │ ├── fhandler_cygdrive.cc │ │ ├── fhandler_dev.cc │ │ ├── fhandler_disk_file.cc │ │ ├── fhandler_dsp.cc │ │ ├── fhandler_fifo.cc │ │ ├── fhandler_floppy.cc │ │ ├── fhandler_netdrive.cc │ │ ├── fhandler_nodevice.cc │ │ ├── fhandler_pipe.cc │ │ ├── fhandler_proc.cc │ │ ├── fhandler_process.cc │ │ ├── fhandler_process_fd.cc │ │ ├── fhandler_procnet.cc │ │ ├── fhandler_procsys.cc │ │ ├── fhandler_procsysvipc.cc │ │ ├── fhandler_random.cc │ │ ├── fhandler_raw.cc │ │ ├── fhandler_registry.cc │ │ ├── fhandler_serial.cc │ │ ├── fhandler_signalfd.cc │ │ ├── fhandler_socket.cc │ │ ├── fhandler_socket_inet.cc │ │ ├── fhandler_socket_local.cc │ │ ├── fhandler_socket_unix.cc │ │ ├── fhandler_tape.cc │ │ ├── fhandler_termios.cc │ │ ├── fhandler_timerfd.cc │ │ ├── fhandler_tty.cc │ │ ├── fhandler_virtual.cc │ │ ├── fhandler_virtual.h │ │ ├── fhandler_windows.cc │ │ ├── fhandler_zero.cc │ │ ├── flock.cc │ │ ├── fork.cc │ │ ├── forkable.cc │ │ ├── gcrt0.c │ │ ├── gendef │ │ ├── gendevices │ │ ├── gentls_offsets │ │ ├── glob.cc │ │ ├── glob_pattern_p.cc │ │ ├── globals.cc │ │ ├── gmon.c │ │ ├── gmon.h │ │ ├── grp.cc │ │ ├── heap.cc │ │ ├── heap.h │ │ ├── hookapi.cc │ │ ├── how-autoload-works.txt │ │ ├── how-cygheap-works.txt │ │ ├── how-cygtls-works.txt │ │ ├── how-fhandlers-work.txt │ │ ├── how-signals-work.txt │ │ ├── how-spawn-works.txt │ │ ├── how-startup-shutdown-works.txt │ │ ├── how-to-debug-cygwin.txt │ │ ├── i686.din │ │ ├── include │ │ │ ├── a.out.h │ │ │ ├── acl │ │ │ │ └── libacl.h │ │ │ ├── aio.h │ │ │ ├── arpa │ │ │ │ ├── ftp.h │ │ │ │ ├── inet.h │ │ │ │ ├── nameser.h │ │ │ │ ├── nameser_compat.h │ │ │ │ └── telnet.h │ │ │ ├── asm │ │ │ │ ├── bitsperlong.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── socket.h │ │ │ │ └── types.h │ │ │ ├── attr │ │ │ │ └── xattr.h │ │ │ ├── bits │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ └── wordsize.h │ │ │ ├── byteswap.h │ │ │ ├── cygwin │ │ │ │ ├── _socketflags.h │ │ │ │ ├── _ucred.h │ │ │ │ ├── acl.h │ │ │ │ ├── bits.h │ │ │ │ ├── core_dump.h │ │ │ │ ├── cygwin_dll.h │ │ │ │ ├── fs.h │ │ │ │ ├── grp.h │ │ │ │ ├── hdreg.h │ │ │ │ ├── icmp.h │ │ │ │ ├── if.h │ │ │ │ ├── in.h │ │ │ │ ├── in6.h │ │ │ │ ├── in_systm.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kd.h │ │ │ │ ├── msg.h │ │ │ │ ├── mtio.h │ │ │ │ ├── rdevio.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── sockios.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── sysproto.h │ │ │ │ ├── time.h │ │ │ │ ├── utmp.h │ │ │ │ ├── version.h │ │ │ │ └── wait.h │ │ │ ├── dlfcn.h │ │ │ ├── endian.h │ │ │ ├── err.h │ │ │ ├── error.h │ │ │ ├── fcntl.h │ │ │ ├── features.h │ │ │ ├── fenv.h │ │ │ ├── fnmatch.h │ │ │ ├── fts.h │ │ │ ├── ftw.h │ │ │ ├── getopt.h │ │ │ ├── glob.h │ │ │ ├── icmp.h │ │ │ ├── ifaddrs.h │ │ │ ├── io.h │ │ │ ├── lastlog.h │ │ │ ├── limits.h │ │ │ ├── machine │ │ │ │ ├── _arc4random.h │ │ │ │ ├── _endian.h │ │ │ │ ├── _types.h │ │ │ │ ├── stdlib.h │ │ │ │ └── types.h │ │ │ ├── mapi.h │ │ │ ├── mntent.h │ │ │ ├── monetary.h │ │ │ ├── mqueue.h │ │ │ ├── net │ │ │ │ └── if.h │ │ │ ├── netdb.h │ │ │ ├── netinet │ │ │ │ ├── in.h │ │ │ │ ├── in_systm.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip_icmp.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ ├── nl_types.h │ │ │ ├── paths.h │ │ │ ├── poll.h │ │ │ ├── process.h │ │ │ ├── pthread.h │ │ │ ├── pty.h │ │ │ ├── regex.h │ │ │ ├── resolv.h │ │ │ ├── search.h │ │ │ ├── semaphore.h │ │ │ ├── ssp │ │ │ │ ├── poll.h │ │ │ │ └── socket.h │ │ │ ├── sys │ │ │ │ ├── _pthreadtypes.h │ │ │ │ ├── acl.h │ │ │ │ ├── copying.dj │ │ │ │ ├── cpuset.h │ │ │ │ ├── cygwin.h │ │ │ │ ├── dirent.h │ │ │ │ ├── file.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kd.h │ │ │ │ ├── lock.h │ │ │ │ ├── mman.h │ │ │ │ ├── mount.h │ │ │ │ ├── msg.h │ │ │ │ ├── mtio.h │ │ │ │ ├── param.h │ │ │ │ ├── poll.h │ │ │ │ ├── procfs.h │ │ │ │ ├── quota.h │ │ │ │ ├── random.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── smallprint.h │ │ │ │ ├── socket.h │ │ │ │ ├── soundcard.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── stdio.h │ │ │ │ ├── strace.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── syslimits.h │ │ │ │ ├── syslog.h │ │ │ │ ├── sysmacros.h │ │ │ │ ├── sysproto.h │ │ │ │ ├── termio.h │ │ │ │ ├── termios.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── ttychars.h │ │ │ │ ├── ucontext.h │ │ │ │ ├── uio.h │ │ │ │ ├── un.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ ├── utsname.h │ │ │ │ ├── vfs.h │ │ │ │ ├── wait.h │ │ │ │ └── xattr.h │ │ │ ├── sysexits.h │ │ │ ├── syslog.h │ │ │ ├── termio.h │ │ │ ├── tzfile.h │ │ │ ├── ucontext.h │ │ │ ├── utmpx.h │ │ │ └── wait.h │ │ ├── init.cc │ │ ├── ioctl.cc │ │ ├── ipc.cc │ │ ├── kernel32.cc │ │ ├── lc_era.h │ │ ├── lc_msg.h │ │ ├── ldap.cc │ │ ├── ldap.h │ │ ├── lib │ │ │ ├── _cygwin_crt0_common.cc │ │ │ ├── atexit.c │ │ │ ├── crt0.h │ │ │ ├── cygwin_attach_dll.c │ │ │ ├── cygwin_crt0.c │ │ │ ├── dll_entry.c │ │ │ ├── dll_main.cc │ │ │ ├── dso_handle.c │ │ │ ├── libcmain.c │ │ │ ├── premain0.c │ │ │ ├── premain1.c │ │ │ ├── premain2.c │ │ │ ├── premain3.c │ │ │ └── pseudo-reloc-dummy.c │ │ ├── libc │ │ │ ├── arc4random_stir.c │ │ │ ├── base64.c │ │ │ ├── bsdlib.cc │ │ │ ├── fnmatch.c │ │ │ ├── fts.c │ │ │ ├── ftw.c │ │ │ ├── getentropy.cc │ │ │ ├── getopt.c │ │ │ ├── inet_addr.c │ │ │ ├── inet_network.c │ │ │ ├── minires-os-if.c │ │ │ ├── minires.c │ │ │ ├── minires.h │ │ │ ├── msgcat.c │ │ │ ├── nftw.c │ │ │ ├── rcmd.cc │ │ │ ├── rexec.cc │ │ │ ├── strfmon.c │ │ │ ├── strptime.cc │ │ │ └── xsique.cc │ │ ├── libstdcxx_wrapper.cc │ │ ├── loadavg.cc │ │ ├── loadavg.h │ │ ├── lsearch.cc │ │ ├── malloc.cc │ │ ├── malloc_wrapper.cc │ │ ├── math.h │ │ ├── math │ │ │ ├── DISCLAIMER.PD │ │ │ ├── acosh.def.h │ │ │ ├── acoshl.c │ │ │ ├── acosl.c │ │ │ ├── asinhl.c │ │ │ ├── asinl.c │ │ │ ├── atan2l.c │ │ │ ├── atanhl.c │ │ │ ├── atanl.c │ │ │ ├── cabs.def.h │ │ │ ├── cabsl.c │ │ │ ├── cacos.def.h │ │ │ ├── cacosh.def.h │ │ │ ├── cacosl.c │ │ │ ├── carg.def.h │ │ │ ├── cargl.c │ │ │ ├── casin.def.h │ │ │ ├── casinh.def.h │ │ │ ├── casinl.c │ │ │ ├── catan.def.h │ │ │ ├── catanh.def.h │ │ │ ├── catanl.c │ │ │ ├── cbrtl.c │ │ │ ├── ccos.def.h │ │ │ ├── ccosh.def.h │ │ │ ├── ccosl.c │ │ │ ├── ceil.S │ │ │ ├── ceilf.S │ │ │ ├── ceill.S │ │ │ ├── cephes_emath.c │ │ │ ├── cephes_emath.h │ │ │ ├── cephes_mconf.h │ │ │ ├── cexp.def.h │ │ │ ├── cexpl.c │ │ │ ├── cimag.def.h │ │ │ ├── cimagl.c │ │ │ ├── clog.def.h │ │ │ ├── clog10.def.h │ │ │ ├── clog10l.c │ │ │ ├── clogl.c │ │ │ ├── complex_internal.h │ │ │ ├── conj.def.h │ │ │ ├── conjl.c │ │ │ ├── copysignl.S │ │ │ ├── cos.def.h │ │ │ ├── coshl.c │ │ │ ├── cosl.c │ │ │ ├── cosl_internal.S │ │ │ ├── cossin.c │ │ │ ├── cpow.def.h │ │ │ ├── cpowl.c │ │ │ ├── cproj.def.h │ │ │ ├── cprojl.c │ │ │ ├── creal.def.h │ │ │ ├── creall.c │ │ │ ├── csin.def.h │ │ │ ├── csinh.def.h │ │ │ ├── csinl.c │ │ │ ├── csqrt.def.h │ │ │ ├── csqrtl.c │ │ │ ├── ctan.def.h │ │ │ ├── ctanh.def.h │ │ │ ├── ctanl.c │ │ │ ├── erfl.c │ │ │ ├── exp.def.h │ │ │ ├── exp10l.c │ │ │ ├── exp2.S │ │ │ ├── exp2l.S │ │ │ ├── expl.c │ │ │ ├── expm1.def.h │ │ │ ├── expm1l.c │ │ │ ├── fabsl.c │ │ │ ├── fastmath.h │ │ │ ├── fdiml.c │ │ │ ├── finite.c │ │ │ ├── floorl.S │ │ │ ├── fmal.c │ │ │ ├── fmaxl.c │ │ │ ├── fminl.c │ │ │ ├── fmodl.c │ │ │ ├── frexpl.S │ │ │ ├── ilogbl.S │ │ │ ├── internal_logl.S │ │ │ ├── isinf.c │ │ │ ├── isnan.c │ │ │ ├── ldexpl.c │ │ │ ├── lgammal.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── llroundl.c │ │ │ ├── log.def.h │ │ │ ├── log10l.S │ │ │ ├── log1pl.S │ │ │ ├── log2l.S │ │ │ ├── logbl.c │ │ │ ├── logl.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── lroundl.c │ │ │ ├── modfl.c │ │ │ ├── nearbyint.S │ │ │ ├── nearbyintf.S │ │ │ ├── nearbyintl.S │ │ │ ├── nextafterl.c │ │ │ ├── nexttoward.c │ │ │ ├── nexttowardf.c │ │ │ ├── pow.def.h │ │ │ ├── pow10l.c │ │ │ ├── powi.def.h │ │ │ ├── powil.c │ │ │ ├── powl.c │ │ │ ├── remainder.S │ │ │ ├── remainderf.S │ │ │ ├── remainderl.S │ │ │ ├── remquol.S │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── roundl.c │ │ │ ├── scalbl.S │ │ │ ├── scalbnl.S │ │ │ ├── sin.def.h │ │ │ ├── sinhl.c │ │ │ ├── sinl.c │ │ │ ├── sinl_internal.S │ │ │ ├── sqrt.def.h │ │ │ ├── sqrtl.c │ │ │ ├── tanhl.c │ │ │ ├── tanl.S │ │ │ ├── tgammal.c │ │ │ └── truncl.c │ │ ├── mcount.c │ │ ├── mcountFunc.S │ │ ├── miscfuncs.cc │ │ ├── miscfuncs.h │ │ ├── mkglobals_h │ │ ├── mkimport │ │ ├── mkstatic │ │ ├── mktemp.cc │ │ ├── mkvers.sh │ │ ├── mmap.cc │ │ ├── mmap_alloc.cc │ │ ├── mmap_alloc.h │ │ ├── mmap_helper.h │ │ ├── mount.cc │ │ ├── mount.h │ │ ├── msg.cc │ │ ├── mtinfo.h │ │ ├── net.cc │ │ ├── netdb.cc │ │ ├── nfs.cc │ │ ├── nfs.h │ │ ├── nlsfuncs.cc │ │ ├── ntdll.h │ │ ├── ntea.cc │ │ ├── ntsecapi.h │ │ ├── passwd.cc │ │ ├── path.cc │ │ ├── path.h │ │ ├── pathfinder.h │ │ ├── perprocess.h │ │ ├── pinfo.cc │ │ ├── pinfo.h │ │ ├── poll.cc │ │ ├── posix_ipc.cc │ │ ├── posix_timer.cc │ │ ├── posix_timer.h │ │ ├── profil.c │ │ ├── profil.h │ │ ├── pseudo-reloc.cc │ │ ├── pthread.cc │ │ ├── pwdgrp.h │ │ ├── quotactl.cc │ │ ├── random.cc │ │ ├── regex │ │ │ ├── COPYRIGHT │ │ │ ├── cname.h │ │ │ ├── engine.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regex.3 │ │ │ ├── regex.7 │ │ │ ├── regex2.h │ │ │ ├── regexec.c │ │ │ ├── regfree.c │ │ │ └── utils.h │ │ ├── registry.cc │ │ ├── registry.h │ │ ├── regparm.h │ │ ├── release │ │ │ ├── 1.7.10 │ │ │ ├── 1.7.11 │ │ │ ├── 1.7.12 │ │ │ ├── 1.7.13 │ │ │ ├── 1.7.14 │ │ │ ├── 1.7.15 │ │ │ ├── 1.7.16 │ │ │ ├── 1.7.17 │ │ │ ├── 1.7.18 │ │ │ ├── 1.7.19 │ │ │ ├── 1.7.20 │ │ │ ├── 1.7.21 │ │ │ ├── 1.7.22 │ │ │ ├── 1.7.23 │ │ │ ├── 1.7.24 │ │ │ ├── 1.7.25 │ │ │ ├── 1.7.26 │ │ │ ├── 1.7.27 │ │ │ ├── 1.7.28 │ │ │ ├── 1.7.29 │ │ │ ├── 1.7.30 │ │ │ ├── 1.7.31 │ │ │ ├── 1.7.32 │ │ │ ├── 1.7.33 │ │ │ ├── 1.7.34 │ │ │ ├── 1.7.35 │ │ │ ├── 2.0.0 │ │ │ ├── 2.0.1 │ │ │ ├── 2.0.3 │ │ │ ├── 2.0.4 │ │ │ ├── 2.1.0 │ │ │ ├── 2.10.0 │ │ │ ├── 2.11.0 │ │ │ ├── 2.11.1 │ │ │ ├── 2.11.2 │ │ │ ├── 2.2.0 │ │ │ ├── 2.2.1 │ │ │ ├── 2.3.0 │ │ │ ├── 2.3.1 │ │ │ ├── 2.4.0 │ │ │ ├── 2.4.1 │ │ │ ├── 2.5.0 │ │ │ ├── 2.5.1 │ │ │ ├── 2.5.2 │ │ │ ├── 2.6.0 │ │ │ ├── 2.6.1 │ │ │ ├── 2.7.0 │ │ │ ├── 2.8.0 │ │ │ ├── 2.8.1 │ │ │ ├── 2.8.2 │ │ │ ├── 2.9.0 │ │ │ ├── 3.0 │ │ │ ├── 3.0.1 │ │ │ ├── 3.0.2 │ │ │ ├── 3.0.3 │ │ │ ├── 3.0.4 │ │ │ ├── 3.0.5 │ │ │ ├── 3.0.6 │ │ │ ├── 3.0.7 │ │ │ ├── 3.1.0 │ │ │ ├── 3.1.1 │ │ │ ├── 3.1.2 │ │ │ ├── 3.1.3 │ │ │ ├── 3.1.4 │ │ │ └── 3.1.5 │ │ ├── resource.cc │ │ ├── scandir.cc │ │ ├── sched.cc │ │ ├── sec_acl.cc │ │ ├── sec_auth.cc │ │ ├── sec_helper.cc │ │ ├── sec_posixacl.cc │ │ ├── sec_posixacl.h │ │ ├── security.cc │ │ ├── security.h │ │ ├── select.cc │ │ ├── select.h │ │ ├── sem.cc │ │ ├── setlsapwd.cc │ │ ├── shared.cc │ │ ├── shared_info.h │ │ ├── shm.cc │ │ ├── signal.cc │ │ ├── sigproc.cc │ │ ├── sigproc.h │ │ ├── smallprint.cc │ │ ├── sortdin │ │ ├── spawn.cc │ │ ├── speclib │ │ ├── spinlock.h │ │ ├── strace.cc │ │ ├── strfuncs.cc │ │ ├── string.h │ │ ├── strsep.cc │ │ ├── strsig.cc │ │ ├── sync.cc │ │ ├── sync.h │ │ ├── syscalls.cc │ │ ├── sysconf.cc │ │ ├── syslog.cc │ │ ├── termios.cc │ │ ├── textmode.c │ │ ├── textreadmode.c │ │ ├── thread.cc │ │ ├── thread.h │ │ ├── timerfd.cc │ │ ├── timerfd.h │ │ ├── times.cc │ │ ├── tls_pbuf.cc │ │ ├── tls_pbuf.h │ │ ├── tlsoffsets.h │ │ ├── tlsoffsets64.h │ │ ├── tty.cc │ │ ├── tty.h │ │ ├── tzcode │ │ │ ├── README │ │ │ ├── localtime.c │ │ │ ├── localtime_wrapper.c │ │ │ ├── namespace.h │ │ │ ├── private.h │ │ │ ├── tz_posixrules.h │ │ │ └── tzfile.h │ │ ├── uinfo.cc │ │ ├── uname.cc │ │ ├── update-copyright │ │ ├── userinfo.h │ │ ├── vstrlist.h │ │ ├── wait.cc │ │ ├── wchar.h │ │ ├── wincap.cc │ │ ├── wincap.h │ │ ├── window.cc │ │ ├── winf.cc │ │ ├── winf.h │ │ ├── wininfo.h │ │ ├── winlean.h │ │ ├── winsup.h │ │ ├── winver.rc │ │ └── x86_64.din │ ├── doc │ │ ├── .gitignore │ │ ├── Makefile.in │ │ ├── README │ │ ├── Wishlist │ │ ├── bodysnatcher.pl │ │ ├── configure │ │ ├── configure.ac │ │ ├── cygserver.xml │ │ ├── cygwin-ug-net.xml │ │ ├── cygwinenv.xml │ │ ├── dll.xml │ │ ├── docbook.css │ │ ├── effectively.xml │ │ ├── etc.postinstall.cygwin-doc.sh │ │ ├── etc.preremove.cygwin-doc.sh │ │ ├── faq-api.xml │ │ ├── faq-copyright.xml │ │ ├── faq-programming.xml │ │ ├── faq-resources.xml │ │ ├── faq-setup.xml │ │ ├── faq-using.xml │ │ ├── faq-what.xml │ │ ├── faq.xml │ │ ├── fhandler-tut.txt │ │ ├── filemodes.xml │ │ ├── fo.xsl │ │ ├── gcc.xml │ │ ├── gdb.xml │ │ ├── gprof.xml │ │ ├── highlights.xml │ │ ├── html.xsl │ │ ├── intro.xml │ │ ├── legal.xml │ │ ├── logon-funcs.xml │ │ ├── man.xsl │ │ ├── misc-funcs.xml │ │ ├── new-features.xml │ │ ├── ntsec.xml │ │ ├── ov-ex-unix.xml │ │ ├── ov-ex-win.xml │ │ ├── overview.xml │ │ ├── path.xml │ │ ├── pathnames.xml │ │ ├── posix.xml │ │ ├── programming.xml │ │ ├── setup-env.xml │ │ ├── setup-files.xml │ │ ├── setup-locale.xml │ │ ├── setup-maxmem.xml │ │ ├── setup-net.xml │ │ ├── specialnames.xml │ │ ├── textbinary.xml │ │ ├── ug-info.xml │ │ ├── using.xml │ │ ├── utils.xml │ │ ├── windres.xml │ │ └── xidepend │ ├── install-sh │ ├── lsaauth │ │ ├── Makefile.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── cyglsa-config │ │ ├── cyglsa.c │ │ ├── cyglsa.din │ │ └── cyglsa64.def │ ├── testsuite │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── config │ │ │ └── default.exp │ │ ├── configure │ │ ├── configure.ac │ │ ├── cygrun.c │ │ ├── libltp │ │ │ ├── include │ │ │ │ ├── dataascii.h │ │ │ │ ├── databin.h │ │ │ │ ├── file_lock.h │ │ │ │ ├── forker.h │ │ │ │ ├── open_flags.h │ │ │ │ ├── pattern.h │ │ │ │ ├── random_range.h │ │ │ │ ├── rmobj.h │ │ │ │ ├── search_path.h │ │ │ │ ├── str_to_bytes.h │ │ │ │ ├── string_to_tokens.h │ │ │ │ ├── test.h │ │ │ │ ├── tlibio.h │ │ │ │ ├── usctest.h │ │ │ │ └── write_log.h │ │ │ └── lib │ │ │ │ ├── dataascii.c │ │ │ │ ├── databin.c │ │ │ │ ├── datapid.c │ │ │ │ ├── forker.c │ │ │ │ ├── get_high_address.c │ │ │ │ ├── libtestsuite.c │ │ │ │ ├── open_flags.c │ │ │ │ ├── parse_opts.c │ │ │ │ ├── pattern.c │ │ │ │ ├── rmobj.c │ │ │ │ ├── search_path.c │ │ │ │ ├── str_to_bytes.c │ │ │ │ ├── string_to_tokens.c │ │ │ │ ├── tst_res.c │ │ │ │ ├── tst_sig.c │ │ │ │ ├── tst_tmpdir.c │ │ │ │ └── write_log.c │ │ └── winsup.api │ │ │ ├── checksignal.c │ │ │ ├── crlf.c │ │ │ ├── cygload.cc │ │ │ ├── cygload.exp │ │ │ ├── cygload.h │ │ │ ├── devdsp.c │ │ │ ├── devdsp_okay.h │ │ │ ├── devzero.c │ │ │ ├── iospeed.c │ │ │ ├── known_bugs.tcl │ │ │ ├── ltp │ │ │ ├── access01.c │ │ │ ├── access03.c │ │ │ ├── access04.c │ │ │ ├── access05.c │ │ │ ├── alarm01.c │ │ │ ├── alarm02.c │ │ │ ├── alarm03.c │ │ │ ├── alarm07.c │ │ │ ├── asyncio02.c │ │ │ ├── chdir02.c │ │ │ ├── chdir04.c │ │ │ ├── chmod01.c │ │ │ ├── chmod02.c │ │ │ ├── chown01.c │ │ │ ├── close01.c │ │ │ ├── close02.c │ │ │ ├── close08.c │ │ │ ├── creat01.c │ │ │ ├── creat03.c │ │ │ ├── creat09.c │ │ │ ├── dup01.c │ │ │ ├── dup02.c │ │ │ ├── dup03.c │ │ │ ├── dup04.c │ │ │ ├── dup05.c │ │ │ ├── execl01.c │ │ │ ├── execle01.c │ │ │ ├── execlp01.c │ │ │ ├── execv01.c │ │ │ ├── execve01.c │ │ │ ├── execvp01.c │ │ │ ├── exit01.c │ │ │ ├── exit02.c │ │ │ ├── fchdir01.c │ │ │ ├── fchdir02.c │ │ │ ├── fchmod01.c │ │ │ ├── fchown01.c │ │ │ ├── fcntl02.c │ │ │ ├── fcntl03.c │ │ │ ├── fcntl04.c │ │ │ ├── fcntl05.c │ │ │ ├── fcntl07.c │ │ │ ├── fcntl07B.c │ │ │ ├── fcntl08.c │ │ │ ├── fcntl09.c │ │ │ ├── fcntl10.c │ │ │ ├── fork01.c │ │ │ ├── fork02.c │ │ │ ├── fork03.c │ │ │ ├── fork04.c │ │ │ ├── fork06.c │ │ │ ├── fork07.c │ │ │ ├── fork09.c │ │ │ ├── fork10.c │ │ │ ├── fork11.c │ │ │ ├── fpathconf01.c │ │ │ ├── fstat01.c │ │ │ ├── fstat02.c │ │ │ ├── fstat03.c │ │ │ ├── fstat04.c │ │ │ ├── fsync01.c │ │ │ ├── ftruncate01.c │ │ │ ├── ftruncate02.c │ │ │ ├── ftruncate03.c │ │ │ ├── getegid01.c │ │ │ ├── geteuid01.c │ │ │ ├── getgid01.c │ │ │ ├── getgid02.c │ │ │ ├── getgid03.c │ │ │ ├── getgroups01.c │ │ │ ├── getgroups02.c │ │ │ ├── gethostid01.c │ │ │ ├── gethostname01.c │ │ │ ├── getpgid01.c │ │ │ ├── getpgid02.c │ │ │ ├── getpgrp01.c │ │ │ ├── getpid01.c │ │ │ ├── getpid02.c │ │ │ ├── getppid01.c │ │ │ ├── getppid02.c │ │ │ ├── getuid01.c │ │ │ ├── getuid02.c │ │ │ ├── getuid03.c │ │ │ ├── kill01.c │ │ │ ├── kill02.c │ │ │ ├── kill03.c │ │ │ ├── kill04.c │ │ │ ├── kill09.c │ │ │ ├── link02.c │ │ │ ├── link03.c │ │ │ ├── link04.c │ │ │ ├── link05.c │ │ │ ├── lseek01.c │ │ │ ├── lseek02.c │ │ │ ├── lseek03.c │ │ │ ├── lseek04.c │ │ │ ├── lseek05.c │ │ │ ├── lseek06.c │ │ │ ├── lseek07.c │ │ │ ├── lseek08.c │ │ │ ├── lseek09.c │ │ │ ├── lseek10.c │ │ │ ├── lstat02.c │ │ │ ├── mkdir01.c │ │ │ ├── mkdir08.c │ │ │ ├── mknod01.c │ │ │ ├── mmap001.c │ │ │ ├── mmap02.c │ │ │ ├── mmap03.c │ │ │ ├── mmap04.c │ │ │ ├── mmap05.c │ │ │ ├── mmap06.c │ │ │ ├── mmap07.c │ │ │ ├── mmap08.c │ │ │ ├── munmap01.c │ │ │ ├── munmap02.c │ │ │ ├── nice05.c │ │ │ ├── open02.c │ │ │ ├── open03.c │ │ │ ├── pathconf01.c │ │ │ ├── pause01.c │ │ │ ├── pipe01.c │ │ │ ├── pipe08.c │ │ │ ├── pipe09.c │ │ │ ├── pipe10.c │ │ │ ├── pipe11.c │ │ │ ├── poll01.c │ │ │ ├── read01.c │ │ │ ├── read04.c │ │ │ ├── readdir01.c │ │ │ ├── readlink01.c │ │ │ ├── readlink02.c │ │ │ ├── readlink03.c │ │ │ ├── rename01.c │ │ │ ├── rename02.c │ │ │ ├── rename08.c │ │ │ ├── rename10.c │ │ │ ├── rmdir01.c │ │ │ ├── rmdir04.c │ │ │ ├── rmdir05.c │ │ │ ├── sbrk01.c │ │ │ ├── select01.c │ │ │ ├── select02.c │ │ │ ├── select03.c │ │ │ ├── setgid01.c │ │ │ ├── setgroups01.c │ │ │ ├── setpgid01.c │ │ │ ├── setregid01.c │ │ │ ├── setreuid01.c │ │ │ ├── setuid01.c │ │ │ ├── setuid02.c │ │ │ ├── signal03.c │ │ │ ├── stat01.c │ │ │ ├── stat02.c │ │ │ ├── stat03.c │ │ │ ├── stat05.c │ │ │ ├── stat06.c │ │ │ ├── symlink01.c │ │ │ ├── symlink02.c │ │ │ ├── symlink03.c │ │ │ ├── symlink04.c │ │ │ ├── symlink05.c │ │ │ ├── sync01.c │ │ │ ├── sync02.c │ │ │ ├── time01.c │ │ │ ├── time02.c │ │ │ ├── times01.c │ │ │ ├── times02.c │ │ │ ├── times03.c │ │ │ ├── truncate01.c │ │ │ ├── truncate02.c │ │ │ ├── ulimit01.c │ │ │ ├── umask01.c │ │ │ ├── umask02.c │ │ │ ├── umask03.c │ │ │ ├── uname01.c │ │ │ ├── unlink05.c │ │ │ ├── unlink06.c │ │ │ ├── unlink07.c │ │ │ ├── unlink08.c │ │ │ ├── vfork01.c │ │ │ ├── wait02.c │ │ │ ├── wait401.c │ │ │ ├── wait402.c │ │ │ ├── write01.c │ │ │ ├── write02.c │ │ │ └── write03.c │ │ │ ├── mmaptest01.c │ │ │ ├── mmaptest02.c │ │ │ ├── mmaptest03.c │ │ │ ├── mmaptest04.c │ │ │ ├── msgtest.c │ │ │ ├── nullgetcwd.c │ │ │ ├── pthread │ │ │ ├── cancel1.c │ │ │ ├── cancel10.c │ │ │ ├── cancel11.c │ │ │ ├── cancel12.c │ │ │ ├── cancel2.c │ │ │ ├── cancel3.c │ │ │ ├── cancel4.c │ │ │ ├── cancel5.c │ │ │ ├── cancel6.c │ │ │ ├── cancel7.c │ │ │ ├── cancel8.c │ │ │ ├── cancel9.c │ │ │ ├── cleanup2.c │ │ │ ├── cleanup3.c │ │ │ ├── condvar1.c │ │ │ ├── condvar2.c │ │ │ ├── condvar2_1.c │ │ │ ├── condvar3.c │ │ │ ├── condvar3_1.c │ │ │ ├── condvar3_2.c │ │ │ ├── condvar3_3.c │ │ │ ├── condvar4.c │ │ │ ├── condvar5.c │ │ │ ├── condvar6.c │ │ │ ├── condvar7.c │ │ │ ├── condvar8.c │ │ │ ├── condvar9.c │ │ │ ├── count1.c │ │ │ ├── create1.c │ │ │ ├── create2.c │ │ │ ├── equal1.c │ │ │ ├── exit1.c │ │ │ ├── exit2.c │ │ │ ├── exit3.c │ │ │ ├── inherit1.c │ │ │ ├── join0.c │ │ │ ├── join1.c │ │ │ ├── join2.c │ │ │ ├── mainthreadexits.c │ │ │ ├── mutex1.c │ │ │ ├── mutex1d.c │ │ │ ├── mutex1e.c │ │ │ ├── mutex1n.c │ │ │ ├── mutex1r.c │ │ │ ├── mutex2.c │ │ │ ├── mutex3.c │ │ │ ├── mutex4.c │ │ │ ├── mutex5.c │ │ │ ├── mutex6d.c │ │ │ ├── mutex6e.c │ │ │ ├── mutex6n.c │ │ │ ├── mutex6r.c │ │ │ ├── mutex7.c │ │ │ ├── mutex7d.c │ │ │ ├── mutex7e.c │ │ │ ├── mutex7n.c │ │ │ ├── mutex7r.c │ │ │ ├── mutex8e.c │ │ │ ├── mutex8n.c │ │ │ ├── mutex8r.c │ │ │ ├── once1.c │ │ │ ├── priority1.c │ │ │ ├── priority2.c │ │ │ ├── rwlock1.c │ │ │ ├── rwlock2.c │ │ │ ├── rwlock3.c │ │ │ ├── rwlock4.c │ │ │ ├── rwlock5.c │ │ │ ├── rwlock6.c │ │ │ ├── rwlock7.c │ │ │ ├── self1.c │ │ │ ├── self2.c │ │ │ ├── test.h │ │ │ ├── threadidafterfork.c │ │ │ └── tsd1.c │ │ │ ├── resethand.c │ │ │ ├── samples │ │ │ ├── sample-fail.c │ │ │ ├── sample-miscompile.c │ │ │ └── sample-pass.c │ │ │ ├── semtest.c │ │ │ ├── shmtest.c │ │ │ ├── sigchld.c │ │ │ ├── signal-into-win32-api.c │ │ │ ├── systemcall.c │ │ │ ├── user_malloc.c │ │ │ ├── waitpid.c │ │ │ └── winsup.exp │ └── utils │ │ ├── COPYING.dumper │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── bloda.cc │ │ ├── chattr.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── cygcheck.cc │ │ ├── cygpath.cc │ │ ├── cygwin-console-helper.cc │ │ ├── dump_setup.cc │ │ ├── dumper.cc │ │ ├── dumper.h │ │ ├── gencat.c │ │ ├── getconf.c │ │ ├── getfacl.c │ │ ├── kill.cc │ │ ├── ldd.cc │ │ ├── ldh.cc │ │ ├── loadlib.h │ │ ├── locale.cc │ │ ├── lsattr.c │ │ ├── minidumper.cc │ │ ├── mkgroup.c │ │ ├── mkpasswd.c │ │ ├── module_info.cc │ │ ├── mount.cc │ │ ├── parse_pe.cc │ │ ├── passwd.c │ │ ├── path.cc │ │ ├── path.h │ │ ├── pldd.c │ │ ├── ps.cc │ │ ├── regtool.cc │ │ ├── setfacl.c │ │ ├── setmetamode.c │ │ ├── ssp.c │ │ ├── ssp.txt │ │ ├── strace.cc │ │ ├── testsuite.cc │ │ ├── testsuite.h │ │ ├── tzmap-from-unicode.org │ │ ├── tzmap.h │ │ ├── tzset.c │ │ ├── umount.cc │ │ └── wide_path.h └── ylwrap ├── pass ├── VirtineCompiler.cpp ├── VirtineCompiler.h ├── command.cpp ├── command.h ├── pass.cpp ├── rt │ ├── boot32.asm │ ├── boot64.asm │ ├── link32.ld │ └── link64.ld ├── tests │ ├── main │ └── main.c └── vcc ├── perf.data ├── plotgen ├── .gitignore ├── Makefile ├── README.md ├── fig11-fib-latency.py ├── fig12-image-size.py ├── fig13-http-latency.py ├── fig13-http-tput.py ├── fig14-js.py ├── fig3-mode-latency.py ├── fig4-boot-milestones.py ├── fig8-wasp-latency.py └── requirements.txt ├── scripts └── build_newlib.sh ├── src ├── Cache.cpp ├── Virtine.cpp └── binding.cpp └── test ├── CMakeLists.txt ├── boottime └── main.cpp ├── cache.cpp ├── create └── main.cpp ├── create_cache └── main.cpp ├── create_cache_async └── main.cpp ├── echo_server ├── CMakeLists.txt ├── boot.asm ├── host.cpp ├── kernel.ld └── main.c ├── fib ├── boot.asm ├── main.cpp ├── rt.ld └── virtine.c ├── http ├── http.c └── index.html ├── image_size └── main.cpp ├── include └── bench.h ├── js ├── baseline.cpp ├── host.cpp ├── rt │ ├── base64.h │ ├── boot.asm │ ├── duk_config.h │ ├── duk_source_meta.json │ ├── duktape.c │ ├── duktape.h │ ├── rt.ld │ ├── virtine.c │ └── virtine.h └── test.js ├── multithread └── main.cpp ├── process └── main.cpp ├── pthread └── main.cpp ├── run └── main.cpp ├── smoketest.c ├── virtines ├── boottime.asm ├── fib.asm ├── fib16.asm ├── fib32.asm └── fib64.asm └── vmrun └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/README.md -------------------------------------------------------------------------------- /artifacts.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/artifacts.tar -------------------------------------------------------------------------------- /cloudlab.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/cloudlab.profile -------------------------------------------------------------------------------- /data_example/AMD-Opteron-4122-r415/data/table1.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/README.md -------------------------------------------------------------------------------- /data_example/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/gen.sh -------------------------------------------------------------------------------- /data_example/gold/fig11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/gold/fig11.pdf -------------------------------------------------------------------------------- /data_example/gold/fig12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/gold/fig12.pdf -------------------------------------------------------------------------------- /data_example/gold/fig14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/gold/fig14.pdf -------------------------------------------------------------------------------- /data_example/gold/fig3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/gold/fig3.pdf -------------------------------------------------------------------------------- /data_example/gold/fig4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/gold/fig4.pdf -------------------------------------------------------------------------------- /data_example/gold/fig8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/gold/fig8.pdf -------------------------------------------------------------------------------- /data_example/replot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/data_example/replot.sh -------------------------------------------------------------------------------- /include/virtine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/include/virtine.h -------------------------------------------------------------------------------- /include/wasp/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/include/wasp/Cache.h -------------------------------------------------------------------------------- /include/wasp/Virtine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/include/wasp/Virtine.h -------------------------------------------------------------------------------- /include/wasp/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/include/wasp/binding.h -------------------------------------------------------------------------------- /include/wasp/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/include/wasp/util.h -------------------------------------------------------------------------------- /libc/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/.drone.yml -------------------------------------------------------------------------------- /libc/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/.gitattributes -------------------------------------------------------------------------------- /libc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/.gitignore -------------------------------------------------------------------------------- /libc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/COPYING -------------------------------------------------------------------------------- /libc/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/COPYING.LIB -------------------------------------------------------------------------------- /libc/COPYING.LIBGLOSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/COPYING.LIBGLOSS -------------------------------------------------------------------------------- /libc/COPYING.NEWLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/COPYING.NEWLIB -------------------------------------------------------------------------------- /libc/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/COPYING3 -------------------------------------------------------------------------------- /libc/COPYING3.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/COPYING3.LIB -------------------------------------------------------------------------------- /libc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/ChangeLog -------------------------------------------------------------------------------- /libc/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/MAINTAINERS -------------------------------------------------------------------------------- /libc/Makefile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/Makefile.def -------------------------------------------------------------------------------- /libc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/Makefile.in -------------------------------------------------------------------------------- /libc/Makefile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/Makefile.tpl -------------------------------------------------------------------------------- /libc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/README -------------------------------------------------------------------------------- /libc/README-maintainer-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/README-maintainer-mode -------------------------------------------------------------------------------- /libc/README.nautilus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/README.nautilus.md -------------------------------------------------------------------------------- /libc/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/compile -------------------------------------------------------------------------------- /libc/config-ml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config-ml.in -------------------------------------------------------------------------------- /libc/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config.guess -------------------------------------------------------------------------------- /libc/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config.rpath -------------------------------------------------------------------------------- /libc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config.sub -------------------------------------------------------------------------------- /libc/config/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/ChangeLog -------------------------------------------------------------------------------- /libc/config/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/acinclude.m4 -------------------------------------------------------------------------------- /libc/config/acx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/acx.m4 -------------------------------------------------------------------------------- /libc/config/asmcfi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/asmcfi.m4 -------------------------------------------------------------------------------- /libc/config/bitfields.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/bitfields.m4 -------------------------------------------------------------------------------- /libc/config/bootstrap-O1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/bootstrap-O1.mk -------------------------------------------------------------------------------- /libc/config/bootstrap-O3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/bootstrap-O3.mk -------------------------------------------------------------------------------- /libc/config/cloog.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/cloog.m4 -------------------------------------------------------------------------------- /libc/config/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/codeset.m4 -------------------------------------------------------------------------------- /libc/config/depstand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/depstand.m4 -------------------------------------------------------------------------------- /libc/config/dfp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/dfp.m4 -------------------------------------------------------------------------------- /libc/config/elf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/elf.m4 -------------------------------------------------------------------------------- /libc/config/enable.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/enable.m4 -------------------------------------------------------------------------------- /libc/config/extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/extensions.m4 -------------------------------------------------------------------------------- /libc/config/futex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/futex.m4 -------------------------------------------------------------------------------- /libc/config/gc++filt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/gc++filt.m4 -------------------------------------------------------------------------------- /libc/config/gcc-plugin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/gcc-plugin.m4 -------------------------------------------------------------------------------- /libc/config/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/gettext.m4 -------------------------------------------------------------------------------- /libc/config/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/glibc21.m4 -------------------------------------------------------------------------------- /libc/config/gthr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/gthr.m4 -------------------------------------------------------------------------------- /libc/config/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/iconv.m4 -------------------------------------------------------------------------------- /libc/config/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/intdiv0.m4 -------------------------------------------------------------------------------- /libc/config/inttypes-pri.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/inttypes-pri.m4 -------------------------------------------------------------------------------- /libc/config/inttypes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/inttypes.m4 -------------------------------------------------------------------------------- /libc/config/inttypes_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/inttypes_h.m4 -------------------------------------------------------------------------------- /libc/config/isl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/isl.m4 -------------------------------------------------------------------------------- /libc/config/largefile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/largefile.m4 -------------------------------------------------------------------------------- /libc/config/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/lcmessage.m4 -------------------------------------------------------------------------------- /libc/config/ld-symbolic.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/ld-symbolic.m4 -------------------------------------------------------------------------------- /libc/config/lead-dot.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/lead-dot.m4 -------------------------------------------------------------------------------- /libc/config/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/lib-ld.m4 -------------------------------------------------------------------------------- /libc/config/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/lib-link.m4 -------------------------------------------------------------------------------- /libc/config/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/lib-prefix.m4 -------------------------------------------------------------------------------- /libc/config/lthostflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/lthostflags.m4 -------------------------------------------------------------------------------- /libc/config/math.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/math.m4 -------------------------------------------------------------------------------- /libc/config/mh-alpha-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-alpha-linux -------------------------------------------------------------------------------- /libc/config/mh-cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-cygwin -------------------------------------------------------------------------------- /libc/config/mh-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-darwin -------------------------------------------------------------------------------- /libc/config/mh-djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-djgpp -------------------------------------------------------------------------------- /libc/config/mh-mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-mingw -------------------------------------------------------------------------------- /libc/config/mh-pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-pa -------------------------------------------------------------------------------- /libc/config/mh-pa-hpux10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-pa-hpux10 -------------------------------------------------------------------------------- /libc/config/mh-ppc-aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mh-ppc-aix -------------------------------------------------------------------------------- /libc/config/mmap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mmap.m4 -------------------------------------------------------------------------------- /libc/config/mt-alphaieee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mt-alphaieee -------------------------------------------------------------------------------- /libc/config/mt-d30v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mt-d30v -------------------------------------------------------------------------------- /libc/config/mt-gnu: -------------------------------------------------------------------------------- 1 | CXXFLAGS_FOR_TARGET += -D_GNU_SOURCE 2 | -------------------------------------------------------------------------------- /libc/config/mt-mips-elfoabi: -------------------------------------------------------------------------------- 1 | include $(srcdir)/config/mt-mips16-compat 2 | -------------------------------------------------------------------------------- /libc/config/mt-mips-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mt-mips-gnu -------------------------------------------------------------------------------- /libc/config/mt-nios2-elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mt-nios2-elf -------------------------------------------------------------------------------- /libc/config/mt-ospace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mt-ospace -------------------------------------------------------------------------------- /libc/config/mt-sde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mt-sde -------------------------------------------------------------------------------- /libc/config/mt-spu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/mt-spu -------------------------------------------------------------------------------- /libc/config/multi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/multi.m4 -------------------------------------------------------------------------------- /libc/config/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/nls.m4 -------------------------------------------------------------------------------- /libc/config/override.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/override.m4 -------------------------------------------------------------------------------- /libc/config/picflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/picflag.m4 -------------------------------------------------------------------------------- /libc/config/plugins.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/plugins.m4 -------------------------------------------------------------------------------- /libc/config/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/po.m4 -------------------------------------------------------------------------------- /libc/config/proginstall.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/proginstall.m4 -------------------------------------------------------------------------------- /libc/config/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/progtest.m4 -------------------------------------------------------------------------------- /libc/config/sjlj.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/sjlj.m4 -------------------------------------------------------------------------------- /libc/config/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/stdint.m4 -------------------------------------------------------------------------------- /libc/config/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/stdint_h.m4 -------------------------------------------------------------------------------- /libc/config/target-posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/target-posix -------------------------------------------------------------------------------- /libc/config/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/tcl.m4 -------------------------------------------------------------------------------- /libc/config/tls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/tls.m4 -------------------------------------------------------------------------------- /libc/config/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/uintmax_t.m4 -------------------------------------------------------------------------------- /libc/config/ulonglong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/ulonglong.m4 -------------------------------------------------------------------------------- /libc/config/warnings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/warnings.m4 -------------------------------------------------------------------------------- /libc/config/weakref.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/weakref.m4 -------------------------------------------------------------------------------- /libc/config/zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/config/zlib.m4 -------------------------------------------------------------------------------- /libc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/configure -------------------------------------------------------------------------------- /libc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/configure.ac -------------------------------------------------------------------------------- /libc/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/depcomp -------------------------------------------------------------------------------- /libc/djunpack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/djunpack.bat -------------------------------------------------------------------------------- /libc/etc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/etc/ChangeLog -------------------------------------------------------------------------------- /libc/etc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/etc/Makefile.in -------------------------------------------------------------------------------- /libc/etc/add-log.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/etc/add-log.el -------------------------------------------------------------------------------- /libc/etc/add-log.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/etc/add-log.vi -------------------------------------------------------------------------------- /libc/etc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/etc/configure -------------------------------------------------------------------------------- /libc/etc/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/etc/configure.in -------------------------------------------------------------------------------- /libc/etc/texi2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/etc/texi2pod.pl -------------------------------------------------------------------------------- /libc/include/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/COPYING -------------------------------------------------------------------------------- /libc/include/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/COPYING3 -------------------------------------------------------------------------------- /libc/include/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/ChangeLog -------------------------------------------------------------------------------- /libc/include/ChangeLog-9103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/ChangeLog-9103 -------------------------------------------------------------------------------- /libc/include/ChangeLog.jit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/ChangeLog.jit -------------------------------------------------------------------------------- /libc/include/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/MAINTAINERS -------------------------------------------------------------------------------- /libc/include/alloca-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/alloca-conf.h -------------------------------------------------------------------------------- /libc/include/ansidecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/ansidecl.h -------------------------------------------------------------------------------- /libc/include/aout/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/ChangeLog -------------------------------------------------------------------------------- /libc/include/aout/adobe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/adobe.h -------------------------------------------------------------------------------- /libc/include/aout/aout64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/aout64.h -------------------------------------------------------------------------------- /libc/include/aout/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/ar.h -------------------------------------------------------------------------------- /libc/include/aout/dynix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/dynix3.h -------------------------------------------------------------------------------- /libc/include/aout/encap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/encap.h -------------------------------------------------------------------------------- /libc/include/aout/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/host.h -------------------------------------------------------------------------------- /libc/include/aout/hp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/hp.h -------------------------------------------------------------------------------- /libc/include/aout/hppa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/hppa.h -------------------------------------------------------------------------------- /libc/include/aout/ranlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/ranlib.h -------------------------------------------------------------------------------- /libc/include/aout/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/reloc.h -------------------------------------------------------------------------------- /libc/include/aout/stab.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/stab.def -------------------------------------------------------------------------------- /libc/include/aout/sun4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/aout/sun4.h -------------------------------------------------------------------------------- /libc/include/bfdlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/bfdlink.h -------------------------------------------------------------------------------- /libc/include/binary-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/binary-io.h -------------------------------------------------------------------------------- /libc/include/bout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/bout.h -------------------------------------------------------------------------------- /libc/include/cgen/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/cgen/ChangeLog -------------------------------------------------------------------------------- /libc/include/cgen/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/cgen/bitset.h -------------------------------------------------------------------------------- /libc/include/coff/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/ChangeLog -------------------------------------------------------------------------------- /libc/include/coff/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/alpha.h -------------------------------------------------------------------------------- /libc/include/coff/apollo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/apollo.h -------------------------------------------------------------------------------- /libc/include/coff/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/arm.h -------------------------------------------------------------------------------- /libc/include/coff/ecoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/ecoff.h -------------------------------------------------------------------------------- /libc/include/coff/go32exe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/go32exe.h -------------------------------------------------------------------------------- /libc/include/coff/h8300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/h8300.h -------------------------------------------------------------------------------- /libc/include/coff/h8500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/h8500.h -------------------------------------------------------------------------------- /libc/include/coff/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/i386.h -------------------------------------------------------------------------------- /libc/include/coff/i860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/i860.h -------------------------------------------------------------------------------- /libc/include/coff/i960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/i960.h -------------------------------------------------------------------------------- /libc/include/coff/ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/ia64.h -------------------------------------------------------------------------------- /libc/include/coff/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/m68k.h -------------------------------------------------------------------------------- /libc/include/coff/m88k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/m88k.h -------------------------------------------------------------------------------- /libc/include/coff/mcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/mcore.h -------------------------------------------------------------------------------- /libc/include/coff/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/mips.h -------------------------------------------------------------------------------- /libc/include/coff/mipspe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/mipspe.h -------------------------------------------------------------------------------- /libc/include/coff/or32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/or32.h -------------------------------------------------------------------------------- /libc/include/coff/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/pe.h -------------------------------------------------------------------------------- /libc/include/coff/powerpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/powerpc.h -------------------------------------------------------------------------------- /libc/include/coff/rs6000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/rs6000.h -------------------------------------------------------------------------------- /libc/include/coff/rs6k64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/rs6k64.h -------------------------------------------------------------------------------- /libc/include/coff/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/sh.h -------------------------------------------------------------------------------- /libc/include/coff/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/sparc.h -------------------------------------------------------------------------------- /libc/include/coff/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/sym.h -------------------------------------------------------------------------------- /libc/include/coff/ti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/ti.h -------------------------------------------------------------------------------- /libc/include/coff/tic30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/tic30.h -------------------------------------------------------------------------------- /libc/include/coff/tic4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/tic4x.h -------------------------------------------------------------------------------- /libc/include/coff/tic54x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/tic54x.h -------------------------------------------------------------------------------- /libc/include/coff/tic80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/tic80.h -------------------------------------------------------------------------------- /libc/include/coff/w65.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/w65.h -------------------------------------------------------------------------------- /libc/include/coff/we32k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/we32k.h -------------------------------------------------------------------------------- /libc/include/coff/x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/x86_64.h -------------------------------------------------------------------------------- /libc/include/coff/xcoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/xcoff.h -------------------------------------------------------------------------------- /libc/include/coff/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/z80.h -------------------------------------------------------------------------------- /libc/include/coff/z8k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/coff/z8k.h -------------------------------------------------------------------------------- /libc/include/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/demangle.h -------------------------------------------------------------------------------- /libc/include/dis-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/dis-asm.h -------------------------------------------------------------------------------- /libc/include/dwarf2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/dwarf2.def -------------------------------------------------------------------------------- /libc/include/dwarf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/dwarf2.h -------------------------------------------------------------------------------- /libc/include/dyn-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/dyn-string.h -------------------------------------------------------------------------------- /libc/include/elf/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/ChangeLog -------------------------------------------------------------------------------- /libc/include/elf/aarch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/aarch64.h -------------------------------------------------------------------------------- /libc/include/elf/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/alpha.h -------------------------------------------------------------------------------- /libc/include/elf/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/arc.h -------------------------------------------------------------------------------- /libc/include/elf/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/arm.h -------------------------------------------------------------------------------- /libc/include/elf/avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/avr.h -------------------------------------------------------------------------------- /libc/include/elf/bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/bfin.h -------------------------------------------------------------------------------- /libc/include/elf/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/common.h -------------------------------------------------------------------------------- /libc/include/elf/cr16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/cr16.h -------------------------------------------------------------------------------- /libc/include/elf/cr16c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/cr16c.h -------------------------------------------------------------------------------- /libc/include/elf/cris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/cris.h -------------------------------------------------------------------------------- /libc/include/elf/crx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/crx.h -------------------------------------------------------------------------------- /libc/include/elf/d10v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/d10v.h -------------------------------------------------------------------------------- /libc/include/elf/d30v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/d30v.h -------------------------------------------------------------------------------- /libc/include/elf/dlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/dlx.h -------------------------------------------------------------------------------- /libc/include/elf/dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/dwarf.h -------------------------------------------------------------------------------- /libc/include/elf/epiphany.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/epiphany.h -------------------------------------------------------------------------------- /libc/include/elf/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/external.h -------------------------------------------------------------------------------- /libc/include/elf/fr30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/fr30.h -------------------------------------------------------------------------------- /libc/include/elf/frv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/frv.h -------------------------------------------------------------------------------- /libc/include/elf/h8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/h8.h -------------------------------------------------------------------------------- /libc/include/elf/hppa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/hppa.h -------------------------------------------------------------------------------- /libc/include/elf/i370.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/i370.h -------------------------------------------------------------------------------- /libc/include/elf/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/i386.h -------------------------------------------------------------------------------- /libc/include/elf/i860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/i860.h -------------------------------------------------------------------------------- /libc/include/elf/i960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/i960.h -------------------------------------------------------------------------------- /libc/include/elf/ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/ia64.h -------------------------------------------------------------------------------- /libc/include/elf/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/internal.h -------------------------------------------------------------------------------- /libc/include/elf/ip2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/ip2k.h -------------------------------------------------------------------------------- /libc/include/elf/iq2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/iq2000.h -------------------------------------------------------------------------------- /libc/include/elf/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/lm32.h -------------------------------------------------------------------------------- /libc/include/elf/m32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/m32c.h -------------------------------------------------------------------------------- /libc/include/elf/m32r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/m32r.h -------------------------------------------------------------------------------- /libc/include/elf/m68hc11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/m68hc11.h -------------------------------------------------------------------------------- /libc/include/elf/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/m68k.h -------------------------------------------------------------------------------- /libc/include/elf/mcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/mcore.h -------------------------------------------------------------------------------- /libc/include/elf/mep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/mep.h -------------------------------------------------------------------------------- /libc/include/elf/metag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/metag.h -------------------------------------------------------------------------------- /libc/include/elf/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/mips.h -------------------------------------------------------------------------------- /libc/include/elf/mmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/mmix.h -------------------------------------------------------------------------------- /libc/include/elf/mn10200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/mn10200.h -------------------------------------------------------------------------------- /libc/include/elf/mn10300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/mn10300.h -------------------------------------------------------------------------------- /libc/include/elf/moxie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/moxie.h -------------------------------------------------------------------------------- /libc/include/elf/msp430.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/msp430.h -------------------------------------------------------------------------------- /libc/include/elf/mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/mt.h -------------------------------------------------------------------------------- /libc/include/elf/nios2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/nios2.h -------------------------------------------------------------------------------- /libc/include/elf/openrisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/openrisc.h -------------------------------------------------------------------------------- /libc/include/elf/or32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/or32.h -------------------------------------------------------------------------------- /libc/include/elf/pj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/pj.h -------------------------------------------------------------------------------- /libc/include/elf/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/ppc.h -------------------------------------------------------------------------------- /libc/include/elf/ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/ppc64.h -------------------------------------------------------------------------------- /libc/include/elf/rl78.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/rl78.h -------------------------------------------------------------------------------- /libc/include/elf/rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/rx.h -------------------------------------------------------------------------------- /libc/include/elf/s390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/s390.h -------------------------------------------------------------------------------- /libc/include/elf/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/score.h -------------------------------------------------------------------------------- /libc/include/elf/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/sh.h -------------------------------------------------------------------------------- /libc/include/elf/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/sparc.h -------------------------------------------------------------------------------- /libc/include/elf/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/spu.h -------------------------------------------------------------------------------- /libc/include/elf/tic6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/tic6x.h -------------------------------------------------------------------------------- /libc/include/elf/tilegx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/tilegx.h -------------------------------------------------------------------------------- /libc/include/elf/tilepro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/tilepro.h -------------------------------------------------------------------------------- /libc/include/elf/v850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/v850.h -------------------------------------------------------------------------------- /libc/include/elf/vax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/vax.h -------------------------------------------------------------------------------- /libc/include/elf/vxworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/vxworks.h -------------------------------------------------------------------------------- /libc/include/elf/x86-64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/x86-64.h -------------------------------------------------------------------------------- /libc/include/elf/xc16x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/xc16x.h -------------------------------------------------------------------------------- /libc/include/elf/xgate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/xgate.h -------------------------------------------------------------------------------- /libc/include/elf/xtensa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/elf/xtensa.h -------------------------------------------------------------------------------- /libc/include/environ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/environ.h -------------------------------------------------------------------------------- /libc/include/fibheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/fibheap.h -------------------------------------------------------------------------------- /libc/include/filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/filenames.h -------------------------------------------------------------------------------- /libc/include/floatformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/floatformat.h -------------------------------------------------------------------------------- /libc/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/fnmatch.h -------------------------------------------------------------------------------- /libc/include/fopen-bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/fopen-bin.h -------------------------------------------------------------------------------- /libc/include/fopen-same.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/fopen-same.h -------------------------------------------------------------------------------- /libc/include/fopen-vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/fopen-vms.h -------------------------------------------------------------------------------- /libc/include/gcc-c-fe.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gcc-c-fe.def -------------------------------------------------------------------------------- /libc/include/gdb/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/ChangeLog -------------------------------------------------------------------------------- /libc/include/gdb/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/callback.h -------------------------------------------------------------------------------- /libc/include/gdb/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/fileio.h -------------------------------------------------------------------------------- /libc/include/gdb/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/signals.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-arm.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-bfin.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-cr16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-cr16.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-d10v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-d10v.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-frv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-frv.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-lm32.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-m32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-m32c.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-ppc.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-rl78.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-rl78.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-rx.h -------------------------------------------------------------------------------- /libc/include/gdb/sim-sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdb/sim-sh.h -------------------------------------------------------------------------------- /libc/include/gdbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/gdbm.h -------------------------------------------------------------------------------- /libc/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/getopt.h -------------------------------------------------------------------------------- /libc/include/hashtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/hashtab.h -------------------------------------------------------------------------------- /libc/include/hp-symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/hp-symtab.h -------------------------------------------------------------------------------- /libc/include/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/ieee.h -------------------------------------------------------------------------------- /libc/include/leb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/leb128.h -------------------------------------------------------------------------------- /libc/include/libiberty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/libiberty.h -------------------------------------------------------------------------------- /libc/include/longlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/longlong.h -------------------------------------------------------------------------------- /libc/include/lto-symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/lto-symtab.h -------------------------------------------------------------------------------- /libc/include/mach-o/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/mach-o/arm.h -------------------------------------------------------------------------------- /libc/include/mach-o/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/mach-o/reloc.h -------------------------------------------------------------------------------- /libc/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/md5.h -------------------------------------------------------------------------------- /libc/include/nlm/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/nlm/ChangeLog -------------------------------------------------------------------------------- /libc/include/nlm/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/nlm/common.h -------------------------------------------------------------------------------- /libc/include/nlm/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/nlm/external.h -------------------------------------------------------------------------------- /libc/include/nlm/i386-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/nlm/i386-ext.h -------------------------------------------------------------------------------- /libc/include/nlm/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/nlm/internal.h -------------------------------------------------------------------------------- /libc/include/nlm/ppc-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/nlm/ppc-ext.h -------------------------------------------------------------------------------- /libc/include/oasys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/oasys.h -------------------------------------------------------------------------------- /libc/include/objalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/objalloc.h -------------------------------------------------------------------------------- /libc/include/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/obstack.h -------------------------------------------------------------------------------- /libc/include/opcode/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/alpha.h -------------------------------------------------------------------------------- /libc/include/opcode/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/arc.h -------------------------------------------------------------------------------- /libc/include/opcode/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/arm.h -------------------------------------------------------------------------------- /libc/include/opcode/avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/avr.h -------------------------------------------------------------------------------- /libc/include/opcode/bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/bfin.h -------------------------------------------------------------------------------- /libc/include/opcode/cgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/cgen.h -------------------------------------------------------------------------------- /libc/include/opcode/cr16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/cr16.h -------------------------------------------------------------------------------- /libc/include/opcode/cris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/cris.h -------------------------------------------------------------------------------- /libc/include/opcode/crx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/crx.h -------------------------------------------------------------------------------- /libc/include/opcode/d10v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/d10v.h -------------------------------------------------------------------------------- /libc/include/opcode/d30v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/d30v.h -------------------------------------------------------------------------------- /libc/include/opcode/dlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/dlx.h -------------------------------------------------------------------------------- /libc/include/opcode/h8300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/h8300.h -------------------------------------------------------------------------------- /libc/include/opcode/hppa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/hppa.h -------------------------------------------------------------------------------- /libc/include/opcode/i370.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/i370.h -------------------------------------------------------------------------------- /libc/include/opcode/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/i386.h -------------------------------------------------------------------------------- /libc/include/opcode/i860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/i860.h -------------------------------------------------------------------------------- /libc/include/opcode/i960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/i960.h -------------------------------------------------------------------------------- /libc/include/opcode/ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/ia64.h -------------------------------------------------------------------------------- /libc/include/opcode/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/m68k.h -------------------------------------------------------------------------------- /libc/include/opcode/m88k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/m88k.h -------------------------------------------------------------------------------- /libc/include/opcode/metag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/metag.h -------------------------------------------------------------------------------- /libc/include/opcode/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/mips.h -------------------------------------------------------------------------------- /libc/include/opcode/mmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/mmix.h -------------------------------------------------------------------------------- /libc/include/opcode/moxie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/moxie.h -------------------------------------------------------------------------------- /libc/include/opcode/nios2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/nios2.h -------------------------------------------------------------------------------- /libc/include/opcode/np1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/np1.h -------------------------------------------------------------------------------- /libc/include/opcode/ns32k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/ns32k.h -------------------------------------------------------------------------------- /libc/include/opcode/or32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/or32.h -------------------------------------------------------------------------------- /libc/include/opcode/pdp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/pdp11.h -------------------------------------------------------------------------------- /libc/include/opcode/pj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/pj.h -------------------------------------------------------------------------------- /libc/include/opcode/pn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/pn.h -------------------------------------------------------------------------------- /libc/include/opcode/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/ppc.h -------------------------------------------------------------------------------- /libc/include/opcode/pyr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/pyr.h -------------------------------------------------------------------------------- /libc/include/opcode/rl78.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/rl78.h -------------------------------------------------------------------------------- /libc/include/opcode/rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/rx.h -------------------------------------------------------------------------------- /libc/include/opcode/s390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/s390.h -------------------------------------------------------------------------------- /libc/include/opcode/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/sparc.h -------------------------------------------------------------------------------- /libc/include/opcode/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/spu.h -------------------------------------------------------------------------------- /libc/include/opcode/tahoe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/tahoe.h -------------------------------------------------------------------------------- /libc/include/opcode/tic30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/tic30.h -------------------------------------------------------------------------------- /libc/include/opcode/tic4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/tic4x.h -------------------------------------------------------------------------------- /libc/include/opcode/tic6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/tic6x.h -------------------------------------------------------------------------------- /libc/include/opcode/tic80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/tic80.h -------------------------------------------------------------------------------- /libc/include/opcode/v850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/v850.h -------------------------------------------------------------------------------- /libc/include/opcode/vax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/vax.h -------------------------------------------------------------------------------- /libc/include/opcode/xgate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/opcode/xgate.h -------------------------------------------------------------------------------- /libc/include/os9k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/os9k.h -------------------------------------------------------------------------------- /libc/include/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/partition.h -------------------------------------------------------------------------------- /libc/include/plugin-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/plugin-api.h -------------------------------------------------------------------------------- /libc/include/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/progress.h -------------------------------------------------------------------------------- /libc/include/safe-ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/safe-ctype.h -------------------------------------------------------------------------------- /libc/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/sha1.h -------------------------------------------------------------------------------- /libc/include/som/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/som/ChangeLog -------------------------------------------------------------------------------- /libc/include/som/aout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/som/aout.h -------------------------------------------------------------------------------- /libc/include/som/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/som/clock.h -------------------------------------------------------------------------------- /libc/include/som/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/som/internal.h -------------------------------------------------------------------------------- /libc/include/som/lst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/som/lst.h -------------------------------------------------------------------------------- /libc/include/som/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/som/reloc.h -------------------------------------------------------------------------------- /libc/include/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/sort.h -------------------------------------------------------------------------------- /libc/include/splay-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/splay-tree.h -------------------------------------------------------------------------------- /libc/include/symcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/symcat.h -------------------------------------------------------------------------------- /libc/include/vms/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/ChangeLog -------------------------------------------------------------------------------- /libc/include/vms/dcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/dcx.h -------------------------------------------------------------------------------- /libc/include/vms/dmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/dmt.h -------------------------------------------------------------------------------- /libc/include/vms/dsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/dsc.h -------------------------------------------------------------------------------- /libc/include/vms/dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/dst.h -------------------------------------------------------------------------------- /libc/include/vms/eeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eeom.h -------------------------------------------------------------------------------- /libc/include/vms/egps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/egps.h -------------------------------------------------------------------------------- /libc/include/vms/egsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/egsd.h -------------------------------------------------------------------------------- /libc/include/vms/egst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/egst.h -------------------------------------------------------------------------------- /libc/include/vms/egsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/egsy.h -------------------------------------------------------------------------------- /libc/include/vms/eiaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eiaf.h -------------------------------------------------------------------------------- /libc/include/vms/eicp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eicp.h -------------------------------------------------------------------------------- /libc/include/vms/eidc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eidc.h -------------------------------------------------------------------------------- /libc/include/vms/eiha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eiha.h -------------------------------------------------------------------------------- /libc/include/vms/eihd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eihd.h -------------------------------------------------------------------------------- /libc/include/vms/eihi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eihi.h -------------------------------------------------------------------------------- /libc/include/vms/eihs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eihs.h -------------------------------------------------------------------------------- /libc/include/vms/eihvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eihvn.h -------------------------------------------------------------------------------- /libc/include/vms/eisd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eisd.h -------------------------------------------------------------------------------- /libc/include/vms/emh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/emh.h -------------------------------------------------------------------------------- /libc/include/vms/eobjrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/eobjrec.h -------------------------------------------------------------------------------- /libc/include/vms/esdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/esdf.h -------------------------------------------------------------------------------- /libc/include/vms/esdfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/esdfm.h -------------------------------------------------------------------------------- /libc/include/vms/esdfv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/esdfv.h -------------------------------------------------------------------------------- /libc/include/vms/esgps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/esgps.h -------------------------------------------------------------------------------- /libc/include/vms/esrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/esrf.h -------------------------------------------------------------------------------- /libc/include/vms/etir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/etir.h -------------------------------------------------------------------------------- /libc/include/vms/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/internal.h -------------------------------------------------------------------------------- /libc/include/vms/lbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/lbr.h -------------------------------------------------------------------------------- /libc/include/vms/prt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/prt.h -------------------------------------------------------------------------------- /libc/include/vms/shl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/vms/shl.h -------------------------------------------------------------------------------- /libc/include/xregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/xregex.h -------------------------------------------------------------------------------- /libc/include/xregex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/xregex2.h -------------------------------------------------------------------------------- /libc/include/xtensa-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/include/xtensa-isa.h -------------------------------------------------------------------------------- /libc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/install-sh -------------------------------------------------------------------------------- /libc/libgloss/ChangeLog: -------------------------------------------------------------------------------- 1 | Deprecated. See git log instead. 2 | -------------------------------------------------------------------------------- /libc/libgloss/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/Makefile.in -------------------------------------------------------------------------------- /libc/libgloss/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/README -------------------------------------------------------------------------------- /libc/libgloss/aarch64/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/aarch64/svc.h -------------------------------------------------------------------------------- /libc/libgloss/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/acinclude.m4 -------------------------------------------------------------------------------- /libc/libgloss/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/aclocal.m4 -------------------------------------------------------------------------------- /libc/libgloss/arc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arc/configure -------------------------------------------------------------------------------- /libc/libgloss/arc/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arc/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/arc/gcrt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arc/gcrt0.S -------------------------------------------------------------------------------- /libc/libgloss/arc/mcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arc/mcount.c -------------------------------------------------------------------------------- /libc/libgloss/arc/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arc/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/arm/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/_exit.c -------------------------------------------------------------------------------- /libc/libgloss/arm/_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/_kill.c -------------------------------------------------------------------------------- /libc/libgloss/arm/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/arm.h -------------------------------------------------------------------------------- /libc/libgloss/arm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/configure -------------------------------------------------------------------------------- /libc/libgloss/arm/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/arm/swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/swi.h -------------------------------------------------------------------------------- /libc/libgloss/arm/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/syscall.h -------------------------------------------------------------------------------- /libc/libgloss/arm/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/arm/trap.S -------------------------------------------------------------------------------- /libc/libgloss/bfin/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/_exit.c -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf504.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf504.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf506.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf506.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf512.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf514.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf514.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf516.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf516.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf518.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf518.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf522.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf522.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf523.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf523.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf524.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf524.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf525.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf525.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf526.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf526.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf527.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf527.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf531.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf531.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf532.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf532.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf533.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf533.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf534.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf534.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf536.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf536.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf537.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf537.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf538.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf538.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf539.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf539.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf542.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf542.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf544.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf544.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf547.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf547.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf548.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf548.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf549.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf549.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf561.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf561.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf592.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf592.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf606.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf606.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf607.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf607.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf608.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf608.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/bf609.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/bf609.ld -------------------------------------------------------------------------------- /libc/libgloss/bfin/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/bfin/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/close.c -------------------------------------------------------------------------------- /libc/libgloss/config/dos.mh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/config/dos.mh -------------------------------------------------------------------------------- /libc/libgloss/config/ppc.mh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/config/ppc.mh -------------------------------------------------------------------------------- /libc/libgloss/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/configure -------------------------------------------------------------------------------- /libc/libgloss/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/configure.in -------------------------------------------------------------------------------- /libc/libgloss/cr16/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/_exit.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/close.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/crt1.S -------------------------------------------------------------------------------- /libc/libgloss/cr16/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/crti.S -------------------------------------------------------------------------------- /libc/libgloss/cr16/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/crtn.S -------------------------------------------------------------------------------- /libc/libgloss/cr16/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/getpid.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/kill.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/lseek.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/open.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/putnum.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/read.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/sim.ld -------------------------------------------------------------------------------- /libc/libgloss/cr16/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/stat.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/time.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/unlink.c -------------------------------------------------------------------------------- /libc/libgloss/cr16/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cr16/write.c -------------------------------------------------------------------------------- /libc/libgloss/cris/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cris/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/cris/crti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cris/crti.c -------------------------------------------------------------------------------- /libc/libgloss/cris/crtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cris/crtn.c -------------------------------------------------------------------------------- /libc/libgloss/cris/lcrt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cris/lcrt0.c -------------------------------------------------------------------------------- /libc/libgloss/cris/setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/cris/setup.S -------------------------------------------------------------------------------- /libc/libgloss/crx/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/_exit.c -------------------------------------------------------------------------------- /libc/libgloss/crx/_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/_getenv.c -------------------------------------------------------------------------------- /libc/libgloss/crx/_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/_rename.c -------------------------------------------------------------------------------- /libc/libgloss/crx/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/close.c -------------------------------------------------------------------------------- /libc/libgloss/crx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/configure -------------------------------------------------------------------------------- /libc/libgloss/crx/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/crx/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/crti.S -------------------------------------------------------------------------------- /libc/libgloss/crx/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/crtn.S -------------------------------------------------------------------------------- /libc/libgloss/crx/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/crx/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/getpid.c -------------------------------------------------------------------------------- /libc/libgloss/crx/intable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/intable.c -------------------------------------------------------------------------------- /libc/libgloss/crx/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/crx/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/kill.c -------------------------------------------------------------------------------- /libc/libgloss/crx/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/lseek.c -------------------------------------------------------------------------------- /libc/libgloss/crx/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/open.c -------------------------------------------------------------------------------- /libc/libgloss/crx/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/putnum.c -------------------------------------------------------------------------------- /libc/libgloss/crx/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/read.c -------------------------------------------------------------------------------- /libc/libgloss/crx/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/crx/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/sim.ld -------------------------------------------------------------------------------- /libc/libgloss/crx/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/stat.c -------------------------------------------------------------------------------- /libc/libgloss/crx/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/time.c -------------------------------------------------------------------------------- /libc/libgloss/crx/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/unlink.c -------------------------------------------------------------------------------- /libc/libgloss/crx/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/crx/write.c -------------------------------------------------------------------------------- /libc/libgloss/d30v/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/d30v/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/d30v/inbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/d30v/inbyte.c -------------------------------------------------------------------------------- /libc/libgloss/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/debug.c -------------------------------------------------------------------------------- /libc/libgloss/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/debug.h -------------------------------------------------------------------------------- /libc/libgloss/doc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/doc/configure -------------------------------------------------------------------------------- /libc/libgloss/fr30/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/fr30/crt0.s -------------------------------------------------------------------------------- /libc/libgloss/frv/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/configure -------------------------------------------------------------------------------- /libc/libgloss/frv/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/frv/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/frv/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/getpid.c -------------------------------------------------------------------------------- /libc/libgloss/frv/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/frv/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/kill.c -------------------------------------------------------------------------------- /libc/libgloss/frv/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/print.c -------------------------------------------------------------------------------- /libc/libgloss/frv/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/putnum.c -------------------------------------------------------------------------------- /libc/libgloss/frv/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/frv/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/frv/stat.c -------------------------------------------------------------------------------- /libc/libgloss/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/ft32/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/ft32/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/ft32/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/getpid.c -------------------------------------------------------------------------------- /libc/libgloss/ft32/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/ft32/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/kill.c -------------------------------------------------------------------------------- /libc/libgloss/ft32/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/ft32/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/sim.ld -------------------------------------------------------------------------------- /libc/libgloss/ft32/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/ft32/stat.c -------------------------------------------------------------------------------- /libc/libgloss/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/getpid.c -------------------------------------------------------------------------------- /libc/libgloss/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/glue.h -------------------------------------------------------------------------------- /libc/libgloss/hp74x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/hp74x/README -------------------------------------------------------------------------------- /libc/libgloss/hp74x/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/hp74x/crt0.s -------------------------------------------------------------------------------- /libc/libgloss/hp74x/hppa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/hp74x/hppa.ld -------------------------------------------------------------------------------- /libc/libgloss/hp74x/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/hp74x/io.c -------------------------------------------------------------------------------- /libc/libgloss/hp74x/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/hp74x/test.c -------------------------------------------------------------------------------- /libc/libgloss/i960/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/i960/asm.h -------------------------------------------------------------------------------- /libc/libgloss/i960/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/i960/crt0.c -------------------------------------------------------------------------------- /libc/libgloss/i960/mon960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/i960/mon960.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/iq2000/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/crt1.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/fork.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/kill.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/open.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/pipe.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/read.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/sim.ld -------------------------------------------------------------------------------- /libc/libgloss/iq2000/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/stat.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/test.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/time.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/trap.c -------------------------------------------------------------------------------- /libc/libgloss/iq2000/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/trap.h -------------------------------------------------------------------------------- /libc/libgloss/iq2000/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/iq2000/wait.c -------------------------------------------------------------------------------- /libc/libgloss/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/kill.c -------------------------------------------------------------------------------- /libc/libgloss/lm32/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/lm32/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/lm32/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/lm32/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/lm32/scall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/lm32/scall.S -------------------------------------------------------------------------------- /libc/libgloss/lm32/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/lm32/sim.ld -------------------------------------------------------------------------------- /libc/libgloss/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/lseek.c -------------------------------------------------------------------------------- /libc/libgloss/m32c/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/abort.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/argv.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/chdir.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/chmod.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/close.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/crtn.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/exit.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/fstat.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/getpid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/getpid.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/isatty.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/isatty.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/kill.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/link.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/lseek.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/open.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/read.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/sample.c -------------------------------------------------------------------------------- /libc/libgloss/m32c/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/m32c/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/stat.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/time.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/times.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/unlink.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/unlink.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/utime.S -------------------------------------------------------------------------------- /libc/libgloss/m32c/write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32c/write.S -------------------------------------------------------------------------------- /libc/libgloss/m32r/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/chmod.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/close.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/m32r/eit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/eit.h -------------------------------------------------------------------------------- /libc/libgloss/m32r/eva.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/eva.ld -------------------------------------------------------------------------------- /libc/libgloss/m32r/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/exit.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/getpid.c: -------------------------------------------------------------------------------- 1 | 2 | int 3 | _getpid (int n) 4 | { 5 | return 1; 6 | } 7 | -------------------------------------------------------------------------------- /libc/libgloss/m32r/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/kill.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/lseek.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/open.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/raise.c: -------------------------------------------------------------------------------- 1 | /* ??? Needed? */ 2 | 3 | _raise () 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /libc/libgloss/m32r/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/read.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/stat.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/trap0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/trap0.S -------------------------------------------------------------------------------- /libc/libgloss/m32r/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/unlink.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/utime.c -------------------------------------------------------------------------------- /libc/libgloss/m32r/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m32r/write.c -------------------------------------------------------------------------------- /libc/libgloss/m68k/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/README -------------------------------------------------------------------------------- /libc/libgloss/m68k/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/asm.h -------------------------------------------------------------------------------- /libc/libgloss/m68k/bcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/bcc.ld -------------------------------------------------------------------------------- /libc/libgloss/m68k/cf-isv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/cf-isv.S -------------------------------------------------------------------------------- /libc/libgloss/m68k/cf.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/cf.sc -------------------------------------------------------------------------------- /libc/libgloss/m68k/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/m68k/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/dtor.C -------------------------------------------------------------------------------- /libc/libgloss/m68k/fido.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/fido.h -------------------------------------------------------------------------------- /libc/libgloss/m68k/fido.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/fido.sc -------------------------------------------------------------------------------- /libc/libgloss/m68k/idp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/idp.ld -------------------------------------------------------------------------------- /libc/libgloss/m68k/io-gdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/io-gdb.c -------------------------------------------------------------------------------- /libc/libgloss/m68k/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/io.h -------------------------------------------------------------------------------- /libc/libgloss/m68k/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/leds.c -------------------------------------------------------------------------------- /libc/libgloss/m68k/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/leds.h -------------------------------------------------------------------------------- /libc/libgloss/m68k/mc68ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/mc68ec.c -------------------------------------------------------------------------------- /libc/libgloss/m68k/mvme.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/mvme.S -------------------------------------------------------------------------------- /libc/libgloss/m68k/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/sim.ld -------------------------------------------------------------------------------- /libc/libgloss/m68k/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/m68k/test.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/close.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/mcore/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/kill.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/lseek.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/open.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/pe-cmb.specs: -------------------------------------------------------------------------------- 1 | *endfile: 2 | -Tcmb.ld 3 | 4 | -------------------------------------------------------------------------------- /libc/libgloss/mcore/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/print.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/raise.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/read.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/stat.c -------------------------------------------------------------------------------- /libc/libgloss/mcore/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mcore/write.c -------------------------------------------------------------------------------- /libc/libgloss/mep/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/configure -------------------------------------------------------------------------------- /libc/libgloss/mep/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/mep/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/crtn.S -------------------------------------------------------------------------------- /libc/libgloss/mep/fmax.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/fmax.ld -------------------------------------------------------------------------------- /libc/libgloss/mep/gcov-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/gcov-io.h -------------------------------------------------------------------------------- /libc/libgloss/mep/h_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/h_reset.c -------------------------------------------------------------------------------- /libc/libgloss/mep/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/isatty.c -------------------------------------------------------------------------------- /libc/libgloss/mep/mep-bb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/mep-bb.c -------------------------------------------------------------------------------- /libc/libgloss/mep/min.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/min.ld -------------------------------------------------------------------------------- /libc/libgloss/mep/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/read.c -------------------------------------------------------------------------------- /libc/libgloss/mep/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/mep/simple.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/simple.ld -------------------------------------------------------------------------------- /libc/libgloss/mep/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mep/write.c -------------------------------------------------------------------------------- /libc/libgloss/mips/array.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/array.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/cfe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/cfe.c -------------------------------------------------------------------------------- /libc/libgloss/mips/cfe.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/cfe.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/cma101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/cma101.c -------------------------------------------------------------------------------- /libc/libgloss/mips/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/mips/cygmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/cygmon.c -------------------------------------------------------------------------------- /libc/libgloss/mips/ddb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/ddb.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/dtor.C -------------------------------------------------------------------------------- /libc/libgloss/mips/dve.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/dve.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/dvemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/dvemon.c -------------------------------------------------------------------------------- /libc/libgloss/mips/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/entry.S -------------------------------------------------------------------------------- /libc/libgloss/mips/idt.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/idt.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/idt32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/idt32.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/idt64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/idt64.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/idtmon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/idtmon.S -------------------------------------------------------------------------------- /libc/libgloss/mips/lsi.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/lsi.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/lsipmon.S: -------------------------------------------------------------------------------- 1 | #define LSI 1 2 | #include "pmon.S" 3 | -------------------------------------------------------------------------------- /libc/libgloss/mips/mti32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/mti32.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/mti64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/mti64.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/pmon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/pmon.S -------------------------------------------------------------------------------- /libc/libgloss/mips/pmon.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/pmon.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/regs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/regs.S -------------------------------------------------------------------------------- /libc/libgloss/mips/sde32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/sde32.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/sde64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/sde64.ld -------------------------------------------------------------------------------- /libc/libgloss/mips/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/test.c -------------------------------------------------------------------------------- /libc/libgloss/mips/vr4300.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/vr4300.S -------------------------------------------------------------------------------- /libc/libgloss/mips/vr5xxx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mips/vr5xxx.S -------------------------------------------------------------------------------- /libc/libgloss/moxie/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/moxie/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/moxie/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/moxie/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/moxie/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/moxie/kill.c -------------------------------------------------------------------------------- /libc/libgloss/moxie/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/moxie/print.c -------------------------------------------------------------------------------- /libc/libgloss/moxie/qemu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/moxie/qemu.ld -------------------------------------------------------------------------------- /libc/libgloss/moxie/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/moxie/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/mt/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/chmod.c -------------------------------------------------------------------------------- /libc/libgloss/mt/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/close.c -------------------------------------------------------------------------------- /libc/libgloss/mt/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/mt/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/exit.c -------------------------------------------------------------------------------- /libc/libgloss/mt/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/fstat.c -------------------------------------------------------------------------------- /libc/libgloss/mt/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/kill.c -------------------------------------------------------------------------------- /libc/libgloss/mt/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/lseek.c -------------------------------------------------------------------------------- /libc/libgloss/mt/ms2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/ms2.ld -------------------------------------------------------------------------------- /libc/libgloss/mt/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/open.c -------------------------------------------------------------------------------- /libc/libgloss/mt/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/read.c -------------------------------------------------------------------------------- /libc/libgloss/mt/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/mt/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/stat.c -------------------------------------------------------------------------------- /libc/libgloss/mt/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/time.c -------------------------------------------------------------------------------- /libc/libgloss/mt/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/times.c -------------------------------------------------------------------------------- /libc/libgloss/mt/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/trap.S -------------------------------------------------------------------------------- /libc/libgloss/mt/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/trap.h -------------------------------------------------------------------------------- /libc/libgloss/mt/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/utime.c -------------------------------------------------------------------------------- /libc/libgloss/mt/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/mt/write.c -------------------------------------------------------------------------------- /libc/libgloss/nds32/vh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/nds32/vh.h -------------------------------------------------------------------------------- /libc/libgloss/nios2/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/nios2/io.h -------------------------------------------------------------------------------- /libc/libgloss/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/open.c -------------------------------------------------------------------------------- /libc/libgloss/pa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pa/README -------------------------------------------------------------------------------- /libc/libgloss/pa/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pa/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/pa/op50n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pa/op50n.h -------------------------------------------------------------------------------- /libc/libgloss/pa/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pa/test.c -------------------------------------------------------------------------------- /libc/libgloss/pa/w89k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pa/w89k.h -------------------------------------------------------------------------------- /libc/libgloss/pa/w89k.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pa/w89k.ld -------------------------------------------------------------------------------- /libc/libgloss/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/print.c -------------------------------------------------------------------------------- /libc/libgloss/pru/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pru/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/pru/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pru/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/pru/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/pru/stat.c -------------------------------------------------------------------------------- /libc/libgloss/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/putnum.c -------------------------------------------------------------------------------- /libc/libgloss/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/read.c -------------------------------------------------------------------------------- /libc/libgloss/rx/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/abort.S -------------------------------------------------------------------------------- /libc/libgloss/rx/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/argv.S -------------------------------------------------------------------------------- /libc/libgloss/rx/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/chdir.S -------------------------------------------------------------------------------- /libc/libgloss/rx/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/chmod.S -------------------------------------------------------------------------------- /libc/libgloss/rx/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/close.S -------------------------------------------------------------------------------- /libc/libgloss/rx/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/rx/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/crtn.S -------------------------------------------------------------------------------- /libc/libgloss/rx/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/exit.S -------------------------------------------------------------------------------- /libc/libgloss/rx/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/fstat.S -------------------------------------------------------------------------------- /libc/libgloss/rx/gcrt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/gcrt0.S -------------------------------------------------------------------------------- /libc/libgloss/rx/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/kill.S -------------------------------------------------------------------------------- /libc/libgloss/rx/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/link.S -------------------------------------------------------------------------------- /libc/libgloss/rx/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/lseek.S -------------------------------------------------------------------------------- /libc/libgloss/rx/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/open.S -------------------------------------------------------------------------------- /libc/libgloss/rx/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/read.S -------------------------------------------------------------------------------- /libc/libgloss/rx/rx.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/rx.ld -------------------------------------------------------------------------------- /libc/libgloss/rx/rxsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/rxsys.h -------------------------------------------------------------------------------- /libc/libgloss/rx/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/rx/sleep.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/sleep.S -------------------------------------------------------------------------------- /libc/libgloss/rx/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/stat.S -------------------------------------------------------------------------------- /libc/libgloss/rx/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/time.S -------------------------------------------------------------------------------- /libc/libgloss/rx/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/times.S -------------------------------------------------------------------------------- /libc/libgloss/rx/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/utime.S -------------------------------------------------------------------------------- /libc/libgloss/rx/write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/rx/write.S -------------------------------------------------------------------------------- /libc/libgloss/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/spu/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/crt0.S -------------------------------------------------------------------------------- /libc/libgloss/spu/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/crti.S -------------------------------------------------------------------------------- /libc/libgloss/spu/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/crtn.S -------------------------------------------------------------------------------- /libc/libgloss/spu/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/dup.c -------------------------------------------------------------------------------- /libc/libgloss/spu/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/dup2.c -------------------------------------------------------------------------------- /libc/libgloss/spu/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/exit.c -------------------------------------------------------------------------------- /libc/libgloss/spu/jsre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/jsre.h -------------------------------------------------------------------------------- /libc/libgloss/spu/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/kill.c -------------------------------------------------------------------------------- /libc/libgloss/spu/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/link.c -------------------------------------------------------------------------------- /libc/libgloss/spu/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/open.c -------------------------------------------------------------------------------- /libc/libgloss/spu/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/read.c -------------------------------------------------------------------------------- /libc/libgloss/spu/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/sbrk.c -------------------------------------------------------------------------------- /libc/libgloss/spu/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/stat.c -------------------------------------------------------------------------------- /libc/libgloss/spu/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/spu/sync.c -------------------------------------------------------------------------------- /libc/libgloss/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/stat.c -------------------------------------------------------------------------------- /libc/libgloss/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/syscall.h -------------------------------------------------------------------------------- /libc/libgloss/testsuite/config/m68k.mt: -------------------------------------------------------------------------------- 1 | MULTILIB= 2 | GLOSSDIR=m68k 3 | SCRIPTS=mvme135 idp 4 | -------------------------------------------------------------------------------- /libc/libgloss/testsuite/config/mips.mt: -------------------------------------------------------------------------------- 1 | MULTILIB= 2 | GLOSSDIR=mips 3 | SCRIPTS=array 4 | -------------------------------------------------------------------------------- /libc/libgloss/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/unlink.c -------------------------------------------------------------------------------- /libc/libgloss/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libgloss/write.c -------------------------------------------------------------------------------- /libc/libgloss/xc16x/sys/syscall.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libc/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/libtool.m4 -------------------------------------------------------------------------------- /libc/ltgcc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/ltgcc.m4 -------------------------------------------------------------------------------- /libc/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/ltmain.sh -------------------------------------------------------------------------------- /libc/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/ltoptions.m4 -------------------------------------------------------------------------------- /libc/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/ltsugar.m4 -------------------------------------------------------------------------------- /libc/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/ltversion.m4 -------------------------------------------------------------------------------- /libc/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/lt~obsolete.m4 -------------------------------------------------------------------------------- /libc/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/makefile.vms -------------------------------------------------------------------------------- /libc/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/missing -------------------------------------------------------------------------------- /libc/mkdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/mkdep -------------------------------------------------------------------------------- /libc/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/mkinstalldirs -------------------------------------------------------------------------------- /libc/move-if-change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/move-if-change -------------------------------------------------------------------------------- /libc/newlib/ChangeLog: -------------------------------------------------------------------------------- 1 | Deprecated. See git log instead. 2 | -------------------------------------------------------------------------------- /libc/newlib/HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/HOWTO -------------------------------------------------------------------------------- /libc/newlib/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/MAINTAINERS -------------------------------------------------------------------------------- /libc/newlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/Makefile.am -------------------------------------------------------------------------------- /libc/newlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/Makefile.in -------------------------------------------------------------------------------- /libc/newlib/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/NEWS -------------------------------------------------------------------------------- /libc/newlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/README -------------------------------------------------------------------------------- /libc/newlib/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/acconfig.h -------------------------------------------------------------------------------- /libc/newlib/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/acinclude.m4 -------------------------------------------------------------------------------- /libc/newlib/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/aclocal.m4 -------------------------------------------------------------------------------- /libc/newlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/configure -------------------------------------------------------------------------------- /libc/newlib/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/configure.in -------------------------------------------------------------------------------- /libc/newlib/doc/doc.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/doc/doc.str -------------------------------------------------------------------------------- /libc/newlib/iconvdata/EUC-JP.irreversible: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/argz/dummy.c: -------------------------------------------------------------------------------- 1 | /* empty stub to allow objectlist.awk.in to be created */ 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/include/machine/ansi.h: -------------------------------------------------------------------------------- 1 | /* dummy header file to support BSD compiler */ 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/include/machine/param.h: -------------------------------------------------------------------------------- 1 | /* Place holder for machine-specific param.h. */ 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/include/sys/file.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/machine/i386/sys/fenv.h: -------------------------------------------------------------------------------- 1 | ../../x86_64/sys/fenv.h -------------------------------------------------------------------------------- /libc/newlib/libc/machine/spu/vfiprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vfprintf.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/machine/spu/vfiscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vfscanf.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/machine/spu/viprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vprintf.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/machine/spu/viscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vscanf.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/machine/spu/vsiprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsprintf.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/machine/spu/vsiscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsscanf.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/machine/spu/vsniprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsnprintf.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/saber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/libc/saber -------------------------------------------------------------------------------- /libc/newlib/libc/search/bsd_qsort_r.c: -------------------------------------------------------------------------------- 1 | #define I_AM_QSORT_R 2 | #include "qsort.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/stdlib/strtoll_r.c: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/stdlib/strtoull_r.c: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/stdlib/wcstoll_r.c: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/stdlib/wcstoull_r.c: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/libc/sys.tex -------------------------------------------------------------------------------- /libc/newlib/libc/sys/decstation/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/h8300hms/sys/syscall.h: -------------------------------------------------------------------------------- 1 | #define SYS_read 4 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/linux/dl/libintl.h: -------------------------------------------------------------------------------- 1 | #define N_(x) x 2 | 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/linux/hp-timing.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/linux/include/semaphore.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/linux/machine/i386/sysdep.h: -------------------------------------------------------------------------------- 1 | #define NO_UNDERSCORES 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/linux/raise.c: -------------------------------------------------------------------------------- 1 | /* empty file so we override regular raise */ 2 | 3 | 4 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/linux/sethostid.c: -------------------------------------------------------------------------------- 1 | #define SET_PROCEDURE 1 2 | #include "gethostid.c" 3 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/linux/shlib-compat.h: -------------------------------------------------------------------------------- 1 | #define SHLIB_COMPAT(libc, introduced, obsoleted) 0 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/rtems/dummysys.c: -------------------------------------------------------------------------------- 1 | void not_required_by_rtems( void ) {} 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/rtems/include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/sparc64/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/sun4/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /libc/newlib/libc/sys/virtine/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc/newlib/libm/common/local.h: -------------------------------------------------------------------------------- 1 | /* placeholder for future usage. */ 2 | -------------------------------------------------------------------------------- /libc/newlib/man.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/man.xsl -------------------------------------------------------------------------------- /libc/newlib/newlib.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/newlib/newlib.hin -------------------------------------------------------------------------------- /libc/newlib/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /libc/setup.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/setup.com -------------------------------------------------------------------------------- /libc/src-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/src-release -------------------------------------------------------------------------------- /libc/symlink-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/symlink-tree -------------------------------------------------------------------------------- /libc/texinfo/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/texinfo/texinfo.tex -------------------------------------------------------------------------------- /libc/winsup/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/CONTRIBUTORS -------------------------------------------------------------------------------- /libc/winsup/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/COPYING -------------------------------------------------------------------------------- /libc/winsup/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/COPYING.LIB -------------------------------------------------------------------------------- /libc/winsup/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/Makefile.in -------------------------------------------------------------------------------- /libc/winsup/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/README -------------------------------------------------------------------------------- /libc/winsup/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/acinclude.m4 -------------------------------------------------------------------------------- /libc/winsup/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/aclocal.m4 -------------------------------------------------------------------------------- /libc/winsup/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/autogen.sh -------------------------------------------------------------------------------- /libc/winsup/c++wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/c++wrap -------------------------------------------------------------------------------- /libc/winsup/ccwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/ccwrap -------------------------------------------------------------------------------- /libc/winsup/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/config.guess -------------------------------------------------------------------------------- /libc/winsup/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/config.sub -------------------------------------------------------------------------------- /libc/winsup/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/configure -------------------------------------------------------------------------------- /libc/winsup/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/configure.ac -------------------------------------------------------------------------------- /libc/winsup/cygwin/include/cygwin/icmp.h: -------------------------------------------------------------------------------- 1 | /* icmp.h */ 2 | -------------------------------------------------------------------------------- /libc/winsup/cygwin/include/cygwin/sockios.h: -------------------------------------------------------------------------------- 1 | /* sockios.h */ 2 | -------------------------------------------------------------------------------- /libc/winsup/cygwin/include/icmp.h: -------------------------------------------------------------------------------- 1 | /* icmp.h */ 2 | -------------------------------------------------------------------------------- /libc/winsup/cygwin/include/sys/ttychars.h: -------------------------------------------------------------------------------- 1 | /* ttychars.h */ 2 | -------------------------------------------------------------------------------- /libc/winsup/cygwin/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/cygwin/nfs.h -------------------------------------------------------------------------------- /libc/winsup/cygwin/release/3.1.3: -------------------------------------------------------------------------------- 1 | This release has been skipped 2 | -------------------------------------------------------------------------------- /libc/winsup/cygwin/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/cygwin/tty.h -------------------------------------------------------------------------------- /libc/winsup/cygwin/tzcode/namespace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc/winsup/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/README -------------------------------------------------------------------------------- /libc/winsup/doc/Wishlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/Wishlist -------------------------------------------------------------------------------- /libc/winsup/doc/dll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/dll.xml -------------------------------------------------------------------------------- /libc/winsup/doc/faq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/faq.xml -------------------------------------------------------------------------------- /libc/winsup/doc/fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/fo.xsl -------------------------------------------------------------------------------- /libc/winsup/doc/gcc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/gcc.xml -------------------------------------------------------------------------------- /libc/winsup/doc/gdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/gdb.xml -------------------------------------------------------------------------------- /libc/winsup/doc/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/html.xsl -------------------------------------------------------------------------------- /libc/winsup/doc/man.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/man.xsl -------------------------------------------------------------------------------- /libc/winsup/doc/path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/path.xml -------------------------------------------------------------------------------- /libc/winsup/doc/xidepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/doc/xidepend -------------------------------------------------------------------------------- /libc/winsup/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/install-sh -------------------------------------------------------------------------------- /libc/winsup/testsuite/winsup.api/samples/sample-miscompile.c: -------------------------------------------------------------------------------- 1 | foo bar grill 2 | -------------------------------------------------------------------------------- /libc/winsup/utils/ldd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/utils/ldd.cc -------------------------------------------------------------------------------- /libc/winsup/utils/ldh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/utils/ldh.cc -------------------------------------------------------------------------------- /libc/winsup/utils/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/utils/path.h -------------------------------------------------------------------------------- /libc/winsup/utils/pldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/utils/pldd.c -------------------------------------------------------------------------------- /libc/winsup/utils/ps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/utils/ps.cc -------------------------------------------------------------------------------- /libc/winsup/utils/ssp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/winsup/utils/ssp.c -------------------------------------------------------------------------------- /libc/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/libc/ylwrap -------------------------------------------------------------------------------- /pass/VirtineCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/VirtineCompiler.cpp -------------------------------------------------------------------------------- /pass/VirtineCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/VirtineCompiler.h -------------------------------------------------------------------------------- /pass/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/command.cpp -------------------------------------------------------------------------------- /pass/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/command.h -------------------------------------------------------------------------------- /pass/pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/pass.cpp -------------------------------------------------------------------------------- /pass/rt/boot32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/rt/boot32.asm -------------------------------------------------------------------------------- /pass/rt/boot64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/rt/boot64.asm -------------------------------------------------------------------------------- /pass/rt/link32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/rt/link32.ld -------------------------------------------------------------------------------- /pass/rt/link64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/rt/link64.ld -------------------------------------------------------------------------------- /pass/tests/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/tests/main -------------------------------------------------------------------------------- /pass/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/tests/main.c -------------------------------------------------------------------------------- /pass/vcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/pass/vcc -------------------------------------------------------------------------------- /perf.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/perf.data -------------------------------------------------------------------------------- /plotgen/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /plotgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/plotgen/Makefile -------------------------------------------------------------------------------- /plotgen/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | To build graphs, run `make -j` 4 | -------------------------------------------------------------------------------- /plotgen/fig14-js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/plotgen/fig14-js.py -------------------------------------------------------------------------------- /plotgen/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/plotgen/requirements.txt -------------------------------------------------------------------------------- /scripts/build_newlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/scripts/build_newlib.sh -------------------------------------------------------------------------------- /src/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/src/Cache.cpp -------------------------------------------------------------------------------- /src/Virtine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/src/Virtine.cpp -------------------------------------------------------------------------------- /src/binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/src/binding.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/boottime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/boottime/main.cpp -------------------------------------------------------------------------------- /test/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/cache.cpp -------------------------------------------------------------------------------- /test/create/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/create/main.cpp -------------------------------------------------------------------------------- /test/echo_server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/echo_server/main.c -------------------------------------------------------------------------------- /test/fib/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/fib/boot.asm -------------------------------------------------------------------------------- /test/fib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/fib/main.cpp -------------------------------------------------------------------------------- /test/fib/rt.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/fib/rt.ld -------------------------------------------------------------------------------- /test/fib/virtine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/fib/virtine.c -------------------------------------------------------------------------------- /test/http/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/http/http.c -------------------------------------------------------------------------------- /test/http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/http/index.html -------------------------------------------------------------------------------- /test/image_size/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/image_size/main.cpp -------------------------------------------------------------------------------- /test/include/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/include/bench.h -------------------------------------------------------------------------------- /test/js/baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/baseline.cpp -------------------------------------------------------------------------------- /test/js/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/host.cpp -------------------------------------------------------------------------------- /test/js/rt/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/base64.h -------------------------------------------------------------------------------- /test/js/rt/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/boot.asm -------------------------------------------------------------------------------- /test/js/rt/duk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/duk_config.h -------------------------------------------------------------------------------- /test/js/rt/duktape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/duktape.c -------------------------------------------------------------------------------- /test/js/rt/duktape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/duktape.h -------------------------------------------------------------------------------- /test/js/rt/rt.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/rt.ld -------------------------------------------------------------------------------- /test/js/rt/virtine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/virtine.c -------------------------------------------------------------------------------- /test/js/rt/virtine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/rt/virtine.h -------------------------------------------------------------------------------- /test/js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/js/test.js -------------------------------------------------------------------------------- /test/process/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/process/main.cpp -------------------------------------------------------------------------------- /test/pthread/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/pthread/main.cpp -------------------------------------------------------------------------------- /test/run/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/run/main.cpp -------------------------------------------------------------------------------- /test/smoketest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/smoketest.c -------------------------------------------------------------------------------- /test/virtines/fib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/virtines/fib.asm -------------------------------------------------------------------------------- /test/virtines/fib16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/virtines/fib16.asm -------------------------------------------------------------------------------- /test/virtines/fib32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/virtines/fib32.asm -------------------------------------------------------------------------------- /test/virtines/fib64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/virtines/fib64.asm -------------------------------------------------------------------------------- /test/vmrun/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtines/wasp/HEAD/test/vmrun/main.cpp --------------------------------------------------------------------------------