OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("fusl") { |
| 6 configs = [] |
| 7 |
| 8 cflags = [ |
| 9 # Flags from musl |
| 10 "-std=c99", |
| 11 "-ffreestanding", |
| 12 "-nostdinc", |
| 13 |
| 14 "-D_XOPEN_SOURCE=700", |
| 15 |
| 16 "-Wa,--noexecstack", |
| 17 |
| 18 "-fomit-frame-pointer", |
| 19 "-fno-unwind-tables", |
| 20 "-fno-asynchronous-unwind-tables", |
| 21 "-ffunction-sections", |
| 22 "-fdata-sections", |
| 23 "-Werror=implicit-function-declaration", |
| 24 "-Werror=implicit-int", |
| 25 "-Werror=pointer-sign", |
| 26 "-Werror=pointer-arith", |
| 27 |
| 28 # Flags we add to get build working |
| 29 "-Wno-bitwise-op-parentheses", |
| 30 "-Wno-logical-op-parentheses", |
| 31 "-Wno-shift-op-parentheses", |
| 32 ] |
| 33 |
| 34 # Arch specific includes. |
| 35 include_dirs = [ "arch/x86_64" ] |
| 36 |
| 37 # General includes. |
| 38 include_dirs += [ |
| 39 "src/internal", |
| 40 "include", |
| 41 ] |
| 42 |
| 43 # General sources. |
| 44 sources = [ |
| 45 "//fusl/src/aio/aio.c", |
| 46 "//fusl/src/aio/aio_suspend.c", |
| 47 "//fusl/src/aio/lio_listio.c", |
| 48 "//fusl/src/complex/__cexp.c", |
| 49 "//fusl/src/complex/__cexpf.c", |
| 50 "//fusl/src/complex/cabs.c", |
| 51 "//fusl/src/complex/cabsf.c", |
| 52 "//fusl/src/complex/cabsl.c", |
| 53 "//fusl/src/complex/cacos.c", |
| 54 "//fusl/src/complex/cacosf.c", |
| 55 "//fusl/src/complex/cacosh.c", |
| 56 "//fusl/src/complex/cacoshf.c", |
| 57 "//fusl/src/complex/cacoshl.c", |
| 58 "//fusl/src/complex/cacosl.c", |
| 59 "//fusl/src/complex/carg.c", |
| 60 "//fusl/src/complex/cargf.c", |
| 61 "//fusl/src/complex/cargl.c", |
| 62 "//fusl/src/complex/casin.c", |
| 63 "//fusl/src/complex/casinf.c", |
| 64 "//fusl/src/complex/casinh.c", |
| 65 "//fusl/src/complex/casinhf.c", |
| 66 "//fusl/src/complex/casinhl.c", |
| 67 "//fusl/src/complex/casinl.c", |
| 68 "//fusl/src/complex/catan.c", |
| 69 "//fusl/src/complex/catanf.c", |
| 70 "//fusl/src/complex/catanh.c", |
| 71 "//fusl/src/complex/catanhf.c", |
| 72 "//fusl/src/complex/catanhl.c", |
| 73 "//fusl/src/complex/catanl.c", |
| 74 "//fusl/src/complex/ccos.c", |
| 75 "//fusl/src/complex/ccosf.c", |
| 76 "//fusl/src/complex/ccosh.c", |
| 77 "//fusl/src/complex/ccoshf.c", |
| 78 "//fusl/src/complex/ccoshl.c", |
| 79 "//fusl/src/complex/ccosl.c", |
| 80 "//fusl/src/complex/cexp.c", |
| 81 "//fusl/src/complex/cexpf.c", |
| 82 "//fusl/src/complex/cexpl.c", |
| 83 "//fusl/src/complex/cimag.c", |
| 84 "//fusl/src/complex/cimagf.c", |
| 85 "//fusl/src/complex/cimagl.c", |
| 86 "//fusl/src/complex/clog.c", |
| 87 "//fusl/src/complex/clogf.c", |
| 88 "//fusl/src/complex/clogl.c", |
| 89 "//fusl/src/complex/conj.c", |
| 90 "//fusl/src/complex/conjf.c", |
| 91 "//fusl/src/complex/conjl.c", |
| 92 "//fusl/src/complex/cpow.c", |
| 93 "//fusl/src/complex/cpowf.c", |
| 94 "//fusl/src/complex/cpowl.c", |
| 95 "//fusl/src/complex/cproj.c", |
| 96 "//fusl/src/complex/cprojf.c", |
| 97 "//fusl/src/complex/cprojl.c", |
| 98 "//fusl/src/complex/creal.c", |
| 99 "//fusl/src/complex/crealf.c", |
| 100 "//fusl/src/complex/creall.c", |
| 101 "//fusl/src/complex/csin.c", |
| 102 "//fusl/src/complex/csinf.c", |
| 103 "//fusl/src/complex/csinh.c", |
| 104 "//fusl/src/complex/csinhf.c", |
| 105 "//fusl/src/complex/csinhl.c", |
| 106 "//fusl/src/complex/csinl.c", |
| 107 "//fusl/src/complex/csqrt.c", |
| 108 "//fusl/src/complex/csqrtf.c", |
| 109 "//fusl/src/complex/csqrtl.c", |
| 110 "//fusl/src/complex/ctan.c", |
| 111 "//fusl/src/complex/ctanf.c", |
| 112 "//fusl/src/complex/ctanh.c", |
| 113 "//fusl/src/complex/ctanhf.c", |
| 114 "//fusl/src/complex/ctanhl.c", |
| 115 "//fusl/src/complex/ctanl.c", |
| 116 "//fusl/src/conf/confstr.c", |
| 117 "//fusl/src/conf/fpathconf.c", |
| 118 "//fusl/src/conf/legacy.c", |
| 119 "//fusl/src/conf/pathconf.c", |
| 120 "//fusl/src/conf/sysconf.c", |
| 121 "//fusl/src/crypt/crypt.c", |
| 122 "//fusl/src/crypt/crypt_blowfish.c", |
| 123 "//fusl/src/crypt/crypt_des.c", |
| 124 "//fusl/src/crypt/crypt_md5.c", |
| 125 "//fusl/src/crypt/crypt_r.c", |
| 126 "//fusl/src/crypt/crypt_sha256.c", |
| 127 "//fusl/src/crypt/crypt_sha512.c", |
| 128 "//fusl/src/crypt/encrypt.c", |
| 129 "//fusl/src/ctype/__ctype_b_loc.c", |
| 130 "//fusl/src/ctype/__ctype_get_mb_cur_max.c", |
| 131 "//fusl/src/ctype/__ctype_tolower_loc.c", |
| 132 "//fusl/src/ctype/__ctype_toupper_loc.c", |
| 133 "//fusl/src/ctype/isalnum.c", |
| 134 "//fusl/src/ctype/isalpha.c", |
| 135 "//fusl/src/ctype/isascii.c", |
| 136 "//fusl/src/ctype/isblank.c", |
| 137 "//fusl/src/ctype/iscntrl.c", |
| 138 "//fusl/src/ctype/isdigit.c", |
| 139 "//fusl/src/ctype/isgraph.c", |
| 140 "//fusl/src/ctype/islower.c", |
| 141 "//fusl/src/ctype/isprint.c", |
| 142 "//fusl/src/ctype/ispunct.c", |
| 143 "//fusl/src/ctype/isspace.c", |
| 144 "//fusl/src/ctype/isupper.c", |
| 145 "//fusl/src/ctype/iswalnum.c", |
| 146 "//fusl/src/ctype/iswalpha.c", |
| 147 "//fusl/src/ctype/iswblank.c", |
| 148 "//fusl/src/ctype/iswcntrl.c", |
| 149 "//fusl/src/ctype/iswctype.c", |
| 150 "//fusl/src/ctype/iswdigit.c", |
| 151 "//fusl/src/ctype/iswgraph.c", |
| 152 "//fusl/src/ctype/iswlower.c", |
| 153 "//fusl/src/ctype/iswprint.c", |
| 154 "//fusl/src/ctype/iswpunct.c", |
| 155 "//fusl/src/ctype/iswspace.c", |
| 156 "//fusl/src/ctype/iswupper.c", |
| 157 "//fusl/src/ctype/iswxdigit.c", |
| 158 "//fusl/src/ctype/isxdigit.c", |
| 159 "//fusl/src/ctype/toascii.c", |
| 160 "//fusl/src/ctype/tolower.c", |
| 161 "//fusl/src/ctype/toupper.c", |
| 162 "//fusl/src/ctype/towctrans.c", |
| 163 "//fusl/src/ctype/wcswidth.c", |
| 164 "//fusl/src/ctype/wctrans.c", |
| 165 "//fusl/src/ctype/wcwidth.c", |
| 166 "//fusl/src/dirent/__getdents.c", |
| 167 "//fusl/src/dirent/alphasort.c", |
| 168 "//fusl/src/dirent/closedir.c", |
| 169 "//fusl/src/dirent/dirfd.c", |
| 170 "//fusl/src/dirent/fdopendir.c", |
| 171 "//fusl/src/dirent/opendir.c", |
| 172 "//fusl/src/dirent/readdir.c", |
| 173 "//fusl/src/dirent/readdir_r.c", |
| 174 "//fusl/src/dirent/rewinddir.c", |
| 175 "//fusl/src/dirent/scandir.c", |
| 176 "//fusl/src/dirent/seekdir.c", |
| 177 "//fusl/src/dirent/telldir.c", |
| 178 "//fusl/src/dirent/versionsort.c", |
| 179 "//fusl/src/env/__environ.c", |
| 180 "//fusl/src/env/__init_tls.c", |
| 181 "//fusl/src/env/__libc_start_main.c", |
| 182 "//fusl/src/env/__reset_tls.c", |
| 183 "//fusl/src/env/__stack_chk_fail.c", |
| 184 "//fusl/src/env/clearenv.c", |
| 185 "//fusl/src/env/getenv.c", |
| 186 "//fusl/src/env/putenv.c", |
| 187 "//fusl/src/env/setenv.c", |
| 188 "//fusl/src/env/unsetenv.c", |
| 189 "//fusl/src/errno/__errno_location.c", |
| 190 "//fusl/src/errno/strerror.c", |
| 191 "//fusl/src/exit/_Exit.c", |
| 192 "//fusl/src/exit/abort.c", |
| 193 "//fusl/src/exit/assert.c", |
| 194 "//fusl/src/exit/at_quick_exit.c", |
| 195 "//fusl/src/exit/atexit.c", |
| 196 "//fusl/src/exit/exit.c", |
| 197 "//fusl/src/exit/quick_exit.c", |
| 198 "//fusl/src/fcntl/creat.c", |
| 199 "//fusl/src/fcntl/fcntl.c", |
| 200 "//fusl/src/fcntl/open.c", |
| 201 "//fusl/src/fcntl/openat.c", |
| 202 "//fusl/src/fcntl/posix_fadvise.c", |
| 203 "//fusl/src/fcntl/posix_fallocate.c", |
| 204 "//fusl/src/fenv/__flt_rounds.c", |
| 205 "//fusl/src/fenv/fegetexceptflag.c", |
| 206 "//fusl/src/fenv/feholdexcept.c", |
| 207 "//fusl/src/fenv/fenv.c", |
| 208 "//fusl/src/fenv/fesetexceptflag.c", |
| 209 "//fusl/src/fenv/fesetround.c", |
| 210 "//fusl/src/fenv/feupdateenv.c", |
| 211 "//fusl/src/internal/floatscan.c", |
| 212 "//fusl/src/internal/intscan.c", |
| 213 "//fusl/src/internal/libc.c", |
| 214 "//fusl/src/internal/procfdname.c", |
| 215 "//fusl/src/internal/shgetc.c", |
| 216 "//fusl/src/internal/syscall.c", |
| 217 "//fusl/src/internal/syscall_ret.c", |
| 218 "//fusl/src/internal/vdso.c", |
| 219 "//fusl/src/internal/version.c", |
| 220 "//fusl/src/ipc/ftok.c", |
| 221 "//fusl/src/ipc/msgctl.c", |
| 222 "//fusl/src/ipc/msgget.c", |
| 223 "//fusl/src/ipc/msgrcv.c", |
| 224 "//fusl/src/ipc/msgsnd.c", |
| 225 "//fusl/src/ipc/semctl.c", |
| 226 "//fusl/src/ipc/semget.c", |
| 227 "//fusl/src/ipc/semop.c", |
| 228 "//fusl/src/ipc/semtimedop.c", |
| 229 "//fusl/src/ipc/shmat.c", |
| 230 "//fusl/src/ipc/shmctl.c", |
| 231 "//fusl/src/ipc/shmdt.c", |
| 232 "//fusl/src/ipc/shmget.c", |
| 233 "//fusl/src/ldso/dl_iterate_phdr.c", |
| 234 "//fusl/src/ldso/dladdr.c", |
| 235 "//fusl/src/ldso/dlinfo.c", |
| 236 "//fusl/src/ldso/dlstart.c", |
| 237 "//fusl/src/ldso/dlsym.c", |
| 238 "//fusl/src/ldso/dynlink.c", |
| 239 "//fusl/src/ldso/tlsdesc.c", |
| 240 "//fusl/src/legacy/cuserid.c", |
| 241 "//fusl/src/legacy/daemon.c", |
| 242 "//fusl/src/legacy/err.c", |
| 243 "//fusl/src/legacy/euidaccess.c", |
| 244 "//fusl/src/legacy/ftw.c", |
| 245 "//fusl/src/legacy/futimes.c", |
| 246 "//fusl/src/legacy/getdtablesize.c", |
| 247 "//fusl/src/legacy/getloadavg.c", |
| 248 "//fusl/src/legacy/getpagesize.c", |
| 249 "//fusl/src/legacy/getpass.c", |
| 250 "//fusl/src/legacy/getusershell.c", |
| 251 "//fusl/src/legacy/isastream.c", |
| 252 "//fusl/src/legacy/lutimes.c", |
| 253 "//fusl/src/legacy/ulimit.c", |
| 254 "//fusl/src/legacy/utmpx.c", |
| 255 "//fusl/src/legacy/valloc.c", |
| 256 "//fusl/src/linux/adjtime.c", |
| 257 "//fusl/src/linux/adjtimex.c", |
| 258 "//fusl/src/linux/arch_prctl.c", |
| 259 "//fusl/src/linux/brk.c", |
| 260 "//fusl/src/linux/cache.c", |
| 261 "//fusl/src/linux/cap.c", |
| 262 "//fusl/src/linux/chroot.c", |
| 263 "//fusl/src/linux/clock_adjtime.c", |
| 264 "//fusl/src/linux/clone.c", |
| 265 "//fusl/src/linux/epoll.c", |
| 266 "//fusl/src/linux/eventfd.c", |
| 267 "//fusl/src/linux/fallocate.c", |
| 268 "//fusl/src/linux/fanotify.c", |
| 269 "//fusl/src/linux/flock.c", |
| 270 "//fusl/src/linux/inotify.c", |
| 271 "//fusl/src/linux/ioperm.c", |
| 272 "//fusl/src/linux/iopl.c", |
| 273 "//fusl/src/linux/klogctl.c", |
| 274 "//fusl/src/linux/module.c", |
| 275 "//fusl/src/linux/mount.c", |
| 276 "//fusl/src/linux/personality.c", |
| 277 "//fusl/src/linux/pivot_root.c", |
| 278 "//fusl/src/linux/ppoll.c", |
| 279 "//fusl/src/linux/prctl.c", |
| 280 "//fusl/src/linux/prlimit.c", |
| 281 "//fusl/src/linux/process_vm.c", |
| 282 "//fusl/src/linux/ptrace.c", |
| 283 "//fusl/src/linux/quotactl.c", |
| 284 "//fusl/src/linux/readahead.c", |
| 285 "//fusl/src/linux/reboot.c", |
| 286 "//fusl/src/linux/remap_file_pages.c", |
| 287 "//fusl/src/linux/sbrk.c", |
| 288 "//fusl/src/linux/sendfile.c", |
| 289 "//fusl/src/linux/setfsgid.c", |
| 290 "//fusl/src/linux/setfsuid.c", |
| 291 "//fusl/src/linux/setgroups.c", |
| 292 "//fusl/src/linux/sethostname.c", |
| 293 "//fusl/src/linux/setns.c", |
| 294 "//fusl/src/linux/settimeofday.c", |
| 295 "//fusl/src/linux/signalfd.c", |
| 296 "//fusl/src/linux/splice.c", |
| 297 "//fusl/src/linux/stime.c", |
| 298 "//fusl/src/linux/swap.c", |
| 299 "//fusl/src/linux/sync_file_range.c", |
| 300 "//fusl/src/linux/syncfs.c", |
| 301 "//fusl/src/linux/sysinfo.c", |
| 302 "//fusl/src/linux/tee.c", |
| 303 "//fusl/src/linux/timerfd.c", |
| 304 "//fusl/src/linux/unshare.c", |
| 305 "//fusl/src/linux/utimes.c", |
| 306 "//fusl/src/linux/vhangup.c", |
| 307 "//fusl/src/linux/vmsplice.c", |
| 308 "//fusl/src/linux/wait3.c", |
| 309 "//fusl/src/linux/wait4.c", |
| 310 "//fusl/src/linux/xattr.c", |
| 311 "//fusl/src/locale/__lctrans.c", |
| 312 "//fusl/src/locale/__mo_lookup.c", |
| 313 "//fusl/src/locale/bind_textdomain_codeset.c", |
| 314 "//fusl/src/locale/c_locale.c", |
| 315 "//fusl/src/locale/catclose.c", |
| 316 "//fusl/src/locale/catgets.c", |
| 317 "//fusl/src/locale/catopen.c", |
| 318 "//fusl/src/locale/dcngettext.c", |
| 319 "//fusl/src/locale/duplocale.c", |
| 320 "//fusl/src/locale/freelocale.c", |
| 321 "//fusl/src/locale/iconv.c", |
| 322 "//fusl/src/locale/langinfo.c", |
| 323 "//fusl/src/locale/locale_map.c", |
| 324 "//fusl/src/locale/localeconv.c", |
| 325 "//fusl/src/locale/newlocale.c", |
| 326 "//fusl/src/locale/pleval.c", |
| 327 "//fusl/src/locale/setlocale.c", |
| 328 "//fusl/src/locale/strcoll.c", |
| 329 "//fusl/src/locale/strfmon.c", |
| 330 "//fusl/src/locale/strxfrm.c", |
| 331 "//fusl/src/locale/textdomain.c", |
| 332 "//fusl/src/locale/uselocale.c", |
| 333 "//fusl/src/locale/wcscoll.c", |
| 334 "//fusl/src/locale/wcsxfrm.c", |
| 335 "//fusl/src/malloc/__brk.c", |
| 336 "//fusl/src/malloc/aligned_alloc.c", |
| 337 "//fusl/src/malloc/calloc.c", |
| 338 "//fusl/src/malloc/expand_heap.c", |
| 339 "//fusl/src/malloc/lite_malloc.c", |
| 340 "//fusl/src/malloc/malloc.c", |
| 341 "//fusl/src/malloc/malloc_usable_size.c", |
| 342 "//fusl/src/malloc/memalign.c", |
| 343 "//fusl/src/malloc/posix_memalign.c", |
| 344 "//fusl/src/math/__cos.c", |
| 345 "//fusl/src/math/__cosdf.c", |
| 346 "//fusl/src/math/__cosl.c", |
| 347 "//fusl/src/math/__expo2.c", |
| 348 "//fusl/src/math/__expo2f.c", |
| 349 "//fusl/src/math/__fpclassify.c", |
| 350 "//fusl/src/math/__fpclassifyf.c", |
| 351 "//fusl/src/math/__fpclassifyl.c", |
| 352 "//fusl/src/math/__invtrigl.c", |
| 353 "//fusl/src/math/__polevll.c", |
| 354 "//fusl/src/math/__rem_pio2.c", |
| 355 "//fusl/src/math/__rem_pio2_large.c", |
| 356 "//fusl/src/math/__rem_pio2f.c", |
| 357 "//fusl/src/math/__rem_pio2l.c", |
| 358 "//fusl/src/math/__signbit.c", |
| 359 "//fusl/src/math/__signbitf.c", |
| 360 "//fusl/src/math/__signbitl.c", |
| 361 "//fusl/src/math/__sin.c", |
| 362 "//fusl/src/math/__sindf.c", |
| 363 "//fusl/src/math/__sinl.c", |
| 364 "//fusl/src/math/__tan.c", |
| 365 "//fusl/src/math/__tandf.c", |
| 366 "//fusl/src/math/__tanl.c", |
| 367 "//fusl/src/math/acos.c", |
| 368 "//fusl/src/math/acosf.c", |
| 369 "//fusl/src/math/acosh.c", |
| 370 "//fusl/src/math/acoshf.c", |
| 371 "//fusl/src/math/acoshl.c", |
| 372 "//fusl/src/math/acosl.c", |
| 373 "//fusl/src/math/asin.c", |
| 374 "//fusl/src/math/asinf.c", |
| 375 "//fusl/src/math/asinh.c", |
| 376 "//fusl/src/math/asinhf.c", |
| 377 "//fusl/src/math/asinhl.c", |
| 378 "//fusl/src/math/asinl.c", |
| 379 "//fusl/src/math/atan.c", |
| 380 "//fusl/src/math/atan2.c", |
| 381 "//fusl/src/math/atan2f.c", |
| 382 "//fusl/src/math/atan2l.c", |
| 383 "//fusl/src/math/atanf.c", |
| 384 "//fusl/src/math/atanh.c", |
| 385 "//fusl/src/math/atanhf.c", |
| 386 "//fusl/src/math/atanhl.c", |
| 387 "//fusl/src/math/atanl.c", |
| 388 "//fusl/src/math/cbrt.c", |
| 389 "//fusl/src/math/cbrtf.c", |
| 390 "//fusl/src/math/cbrtl.c", |
| 391 "//fusl/src/math/ceil.c", |
| 392 "//fusl/src/math/ceilf.c", |
| 393 "//fusl/src/math/ceill.c", |
| 394 "//fusl/src/math/copysign.c", |
| 395 "//fusl/src/math/copysignf.c", |
| 396 "//fusl/src/math/copysignl.c", |
| 397 "//fusl/src/math/cos.c", |
| 398 "//fusl/src/math/cosf.c", |
| 399 "//fusl/src/math/cosh.c", |
| 400 "//fusl/src/math/coshf.c", |
| 401 "//fusl/src/math/coshl.c", |
| 402 "//fusl/src/math/cosl.c", |
| 403 "//fusl/src/math/erf.c", |
| 404 "//fusl/src/math/erff.c", |
| 405 "//fusl/src/math/erfl.c", |
| 406 "//fusl/src/math/exp.c", |
| 407 "//fusl/src/math/exp10.c", |
| 408 "//fusl/src/math/exp10f.c", |
| 409 "//fusl/src/math/exp10l.c", |
| 410 "//fusl/src/math/exp2.c", |
| 411 "//fusl/src/math/exp2f.c", |
| 412 "//fusl/src/math/exp2l.c", |
| 413 "//fusl/src/math/expf.c", |
| 414 "//fusl/src/math/expl.c", |
| 415 "//fusl/src/math/expm1.c", |
| 416 "//fusl/src/math/expm1f.c", |
| 417 "//fusl/src/math/expm1l.c", |
| 418 "//fusl/src/math/fabs.c", |
| 419 "//fusl/src/math/fabsf.c", |
| 420 "//fusl/src/math/fabsl.c", |
| 421 "//fusl/src/math/fdim.c", |
| 422 "//fusl/src/math/fdimf.c", |
| 423 "//fusl/src/math/fdiml.c", |
| 424 "//fusl/src/math/finite.c", |
| 425 "//fusl/src/math/finitef.c", |
| 426 "//fusl/src/math/floor.c", |
| 427 "//fusl/src/math/floorf.c", |
| 428 "//fusl/src/math/floorl.c", |
| 429 "//fusl/src/math/fma.c", |
| 430 "//fusl/src/math/fmaf.c", |
| 431 "//fusl/src/math/fmal.c", |
| 432 "//fusl/src/math/fmax.c", |
| 433 "//fusl/src/math/fmaxf.c", |
| 434 "//fusl/src/math/fmaxl.c", |
| 435 "//fusl/src/math/fmin.c", |
| 436 "//fusl/src/math/fminf.c", |
| 437 "//fusl/src/math/fminl.c", |
| 438 "//fusl/src/math/fmod.c", |
| 439 "//fusl/src/math/fmodf.c", |
| 440 "//fusl/src/math/fmodl.c", |
| 441 "//fusl/src/math/frexp.c", |
| 442 "//fusl/src/math/frexpf.c", |
| 443 "//fusl/src/math/frexpl.c", |
| 444 "//fusl/src/math/hypot.c", |
| 445 "//fusl/src/math/hypotf.c", |
| 446 "//fusl/src/math/hypotl.c", |
| 447 "//fusl/src/math/ilogb.c", |
| 448 "//fusl/src/math/ilogbf.c", |
| 449 "//fusl/src/math/ilogbl.c", |
| 450 "//fusl/src/math/j0.c", |
| 451 "//fusl/src/math/j0f.c", |
| 452 "//fusl/src/math/j1.c", |
| 453 "//fusl/src/math/j1f.c", |
| 454 "//fusl/src/math/jn.c", |
| 455 "//fusl/src/math/jnf.c", |
| 456 "//fusl/src/math/ldexp.c", |
| 457 "//fusl/src/math/ldexpf.c", |
| 458 "//fusl/src/math/ldexpl.c", |
| 459 "//fusl/src/math/lgamma.c", |
| 460 "//fusl/src/math/lgamma_r.c", |
| 461 "//fusl/src/math/lgammaf.c", |
| 462 "//fusl/src/math/lgammaf_r.c", |
| 463 "//fusl/src/math/lgammal.c", |
| 464 "//fusl/src/math/llrint.c", |
| 465 "//fusl/src/math/llrintf.c", |
| 466 "//fusl/src/math/llrintl.c", |
| 467 "//fusl/src/math/llround.c", |
| 468 "//fusl/src/math/llroundf.c", |
| 469 "//fusl/src/math/llroundl.c", |
| 470 "//fusl/src/math/log.c", |
| 471 "//fusl/src/math/log10.c", |
| 472 "//fusl/src/math/log10f.c", |
| 473 "//fusl/src/math/log10l.c", |
| 474 "//fusl/src/math/log1p.c", |
| 475 "//fusl/src/math/log1pf.c", |
| 476 "//fusl/src/math/log1pl.c", |
| 477 "//fusl/src/math/log2.c", |
| 478 "//fusl/src/math/log2f.c", |
| 479 "//fusl/src/math/log2l.c", |
| 480 "//fusl/src/math/logb.c", |
| 481 "//fusl/src/math/logbf.c", |
| 482 "//fusl/src/math/logbl.c", |
| 483 "//fusl/src/math/logf.c", |
| 484 "//fusl/src/math/logl.c", |
| 485 "//fusl/src/math/lrint.c", |
| 486 "//fusl/src/math/lrintf.c", |
| 487 "//fusl/src/math/lrintl.c", |
| 488 "//fusl/src/math/lround.c", |
| 489 "//fusl/src/math/lroundf.c", |
| 490 "//fusl/src/math/lroundl.c", |
| 491 "//fusl/src/math/modf.c", |
| 492 "//fusl/src/math/modff.c", |
| 493 "//fusl/src/math/modfl.c", |
| 494 "//fusl/src/math/nan.c", |
| 495 "//fusl/src/math/nanf.c", |
| 496 "//fusl/src/math/nanl.c", |
| 497 "//fusl/src/math/nearbyint.c", |
| 498 "//fusl/src/math/nearbyintf.c", |
| 499 "//fusl/src/math/nearbyintl.c", |
| 500 "//fusl/src/math/nextafter.c", |
| 501 "//fusl/src/math/nextafterf.c", |
| 502 "//fusl/src/math/nextafterl.c", |
| 503 "//fusl/src/math/nexttoward.c", |
| 504 "//fusl/src/math/nexttowardf.c", |
| 505 "//fusl/src/math/nexttowardl.c", |
| 506 "//fusl/src/math/pow.c", |
| 507 "//fusl/src/math/powf.c", |
| 508 "//fusl/src/math/powl.c", |
| 509 "//fusl/src/math/remainder.c", |
| 510 "//fusl/src/math/remainderf.c", |
| 511 "//fusl/src/math/remainderl.c", |
| 512 "//fusl/src/math/remquo.c", |
| 513 "//fusl/src/math/remquof.c", |
| 514 "//fusl/src/math/remquol.c", |
| 515 "//fusl/src/math/rint.c", |
| 516 "//fusl/src/math/rintf.c", |
| 517 "//fusl/src/math/rintl.c", |
| 518 "//fusl/src/math/round.c", |
| 519 "//fusl/src/math/roundf.c", |
| 520 "//fusl/src/math/roundl.c", |
| 521 "//fusl/src/math/scalb.c", |
| 522 "//fusl/src/math/scalbf.c", |
| 523 "//fusl/src/math/scalbln.c", |
| 524 "//fusl/src/math/scalblnf.c", |
| 525 "//fusl/src/math/scalblnl.c", |
| 526 "//fusl/src/math/scalbn.c", |
| 527 "//fusl/src/math/scalbnf.c", |
| 528 "//fusl/src/math/scalbnl.c", |
| 529 "//fusl/src/math/signgam.c", |
| 530 "//fusl/src/math/significand.c", |
| 531 "//fusl/src/math/significandf.c", |
| 532 "//fusl/src/math/sin.c", |
| 533 "//fusl/src/math/sincos.c", |
| 534 "//fusl/src/math/sincosf.c", |
| 535 "//fusl/src/math/sincosl.c", |
| 536 "//fusl/src/math/sinf.c", |
| 537 "//fusl/src/math/sinh.c", |
| 538 "//fusl/src/math/sinhf.c", |
| 539 "//fusl/src/math/sinhl.c", |
| 540 "//fusl/src/math/sinl.c", |
| 541 "//fusl/src/math/sqrt.c", |
| 542 "//fusl/src/math/sqrtf.c", |
| 543 "//fusl/src/math/sqrtl.c", |
| 544 "//fusl/src/math/tan.c", |
| 545 "//fusl/src/math/tanf.c", |
| 546 "//fusl/src/math/tanh.c", |
| 547 "//fusl/src/math/tanhf.c", |
| 548 "//fusl/src/math/tanhl.c", |
| 549 "//fusl/src/math/tanl.c", |
| 550 "//fusl/src/math/tgamma.c", |
| 551 "//fusl/src/math/tgammaf.c", |
| 552 "//fusl/src/math/tgammal.c", |
| 553 "//fusl/src/math/trunc.c", |
| 554 "//fusl/src/math/truncf.c", |
| 555 "//fusl/src/math/truncl.c", |
| 556 "//fusl/src/misc/a64l.c", |
| 557 "//fusl/src/misc/basename.c", |
| 558 "//fusl/src/misc/dirname.c", |
| 559 "//fusl/src/misc/ffs.c", |
| 560 "//fusl/src/misc/ffsl.c", |
| 561 "//fusl/src/misc/ffsll.c", |
| 562 "//fusl/src/misc/fmtmsg.c", |
| 563 "//fusl/src/misc/forkpty.c", |
| 564 "//fusl/src/misc/get_current_dir_name.c", |
| 565 "//fusl/src/misc/getauxval.c", |
| 566 "//fusl/src/misc/getdomainname.c", |
| 567 "//fusl/src/misc/gethostid.c", |
| 568 "//fusl/src/misc/getopt.c", |
| 569 "//fusl/src/misc/getopt_long.c", |
| 570 "//fusl/src/misc/getpriority.c", |
| 571 "//fusl/src/misc/getresgid.c", |
| 572 "//fusl/src/misc/getresuid.c", |
| 573 "//fusl/src/misc/getrlimit.c", |
| 574 "//fusl/src/misc/getrusage.c", |
| 575 "//fusl/src/misc/getsubopt.c", |
| 576 "//fusl/src/misc/initgroups.c", |
| 577 "//fusl/src/misc/ioctl.c", |
| 578 "//fusl/src/misc/issetugid.c", |
| 579 "//fusl/src/misc/lockf.c", |
| 580 "//fusl/src/misc/login_tty.c", |
| 581 "//fusl/src/misc/mntent.c", |
| 582 "//fusl/src/misc/nftw.c", |
| 583 "//fusl/src/misc/openpty.c", |
| 584 "//fusl/src/misc/ptsname.c", |
| 585 "//fusl/src/misc/pty.c", |
| 586 "//fusl/src/misc/realpath.c", |
| 587 "//fusl/src/misc/setdomainname.c", |
| 588 "//fusl/src/misc/setpriority.c", |
| 589 "//fusl/src/misc/setrlimit.c", |
| 590 "//fusl/src/misc/syscall.c", |
| 591 "//fusl/src/misc/syslog.c", |
| 592 "//fusl/src/misc/uname.c", |
| 593 "//fusl/src/misc/wordexp.c", |
| 594 "//fusl/src/mman/madvise.c", |
| 595 "//fusl/src/mman/mincore.c", |
| 596 "//fusl/src/mman/mlock.c", |
| 597 "//fusl/src/mman/mlockall.c", |
| 598 "//fusl/src/mman/mmap.c", |
| 599 "//fusl/src/mman/mprotect.c", |
| 600 "//fusl/src/mman/mremap.c", |
| 601 "//fusl/src/mman/msync.c", |
| 602 "//fusl/src/mman/munlock.c", |
| 603 "//fusl/src/mman/munlockall.c", |
| 604 "//fusl/src/mman/munmap.c", |
| 605 "//fusl/src/mman/posix_madvise.c", |
| 606 "//fusl/src/mman/shm_open.c", |
| 607 "//fusl/src/mq/mq_close.c", |
| 608 "//fusl/src/mq/mq_getattr.c", |
| 609 "//fusl/src/mq/mq_notify.c", |
| 610 "//fusl/src/mq/mq_open.c", |
| 611 "//fusl/src/mq/mq_receive.c", |
| 612 "//fusl/src/mq/mq_send.c", |
| 613 "//fusl/src/mq/mq_setattr.c", |
| 614 "//fusl/src/mq/mq_timedreceive.c", |
| 615 "//fusl/src/mq/mq_timedsend.c", |
| 616 "//fusl/src/mq/mq_unlink.c", |
| 617 "//fusl/src/multibyte/btowc.c", |
| 618 "//fusl/src/multibyte/c16rtomb.c", |
| 619 "//fusl/src/multibyte/c32rtomb.c", |
| 620 "//fusl/src/multibyte/internal.c", |
| 621 "//fusl/src/multibyte/mblen.c", |
| 622 "//fusl/src/multibyte/mbrlen.c", |
| 623 "//fusl/src/multibyte/mbrtoc16.c", |
| 624 "//fusl/src/multibyte/mbrtoc32.c", |
| 625 "//fusl/src/multibyte/mbrtowc.c", |
| 626 "//fusl/src/multibyte/mbsinit.c", |
| 627 "//fusl/src/multibyte/mbsnrtowcs.c", |
| 628 "//fusl/src/multibyte/mbsrtowcs.c", |
| 629 "//fusl/src/multibyte/mbstowcs.c", |
| 630 "//fusl/src/multibyte/mbtowc.c", |
| 631 "//fusl/src/multibyte/wcrtomb.c", |
| 632 "//fusl/src/multibyte/wcsnrtombs.c", |
| 633 "//fusl/src/multibyte/wcsrtombs.c", |
| 634 "//fusl/src/multibyte/wcstombs.c", |
| 635 "//fusl/src/multibyte/wctob.c", |
| 636 "//fusl/src/multibyte/wctomb.c", |
| 637 "//fusl/src/network/accept.c", |
| 638 "//fusl/src/network/accept4.c", |
| 639 "//fusl/src/network/bind.c", |
| 640 "//fusl/src/network/connect.c", |
| 641 "//fusl/src/network/dn_comp.c", |
| 642 "//fusl/src/network/dn_expand.c", |
| 643 "//fusl/src/network/dn_skipname.c", |
| 644 "//fusl/src/network/dns_parse.c", |
| 645 "//fusl/src/network/ent.c", |
| 646 "//fusl/src/network/ether.c", |
| 647 "//fusl/src/network/freeaddrinfo.c", |
| 648 "//fusl/src/network/gai_strerror.c", |
| 649 "//fusl/src/network/getaddrinfo.c", |
| 650 "//fusl/src/network/gethostbyaddr.c", |
| 651 "//fusl/src/network/gethostbyaddr_r.c", |
| 652 "//fusl/src/network/gethostbyname.c", |
| 653 "//fusl/src/network/gethostbyname2.c", |
| 654 "//fusl/src/network/gethostbyname2_r.c", |
| 655 "//fusl/src/network/gethostbyname_r.c", |
| 656 "//fusl/src/network/getifaddrs.c", |
| 657 "//fusl/src/network/getnameinfo.c", |
| 658 "//fusl/src/network/getpeername.c", |
| 659 "//fusl/src/network/getservbyname.c", |
| 660 "//fusl/src/network/getservbyname_r.c", |
| 661 "//fusl/src/network/getservbyport.c", |
| 662 "//fusl/src/network/getservbyport_r.c", |
| 663 "//fusl/src/network/getsockname.c", |
| 664 "//fusl/src/network/getsockopt.c", |
| 665 "//fusl/src/network/h_errno.c", |
| 666 "//fusl/src/network/herror.c", |
| 667 "//fusl/src/network/hstrerror.c", |
| 668 "//fusl/src/network/htonl.c", |
| 669 "//fusl/src/network/htons.c", |
| 670 "//fusl/src/network/if_freenameindex.c", |
| 671 "//fusl/src/network/if_indextoname.c", |
| 672 "//fusl/src/network/if_nameindex.c", |
| 673 "//fusl/src/network/if_nametoindex.c", |
| 674 "//fusl/src/network/in6addr_any.c", |
| 675 "//fusl/src/network/in6addr_loopback.c", |
| 676 "//fusl/src/network/inet_addr.c", |
| 677 "//fusl/src/network/inet_aton.c", |
| 678 "//fusl/src/network/inet_legacy.c", |
| 679 "//fusl/src/network/inet_ntoa.c", |
| 680 "//fusl/src/network/inet_ntop.c", |
| 681 "//fusl/src/network/inet_pton.c", |
| 682 "//fusl/src/network/listen.c", |
| 683 "//fusl/src/network/lookup_ipliteral.c", |
| 684 "//fusl/src/network/lookup_name.c", |
| 685 "//fusl/src/network/lookup_serv.c", |
| 686 "//fusl/src/network/netlink.c", |
| 687 "//fusl/src/network/netname.c", |
| 688 "//fusl/src/network/ns_parse.c", |
| 689 "//fusl/src/network/ntohl.c", |
| 690 "//fusl/src/network/ntohs.c", |
| 691 "//fusl/src/network/proto.c", |
| 692 "//fusl/src/network/recv.c", |
| 693 "//fusl/src/network/recvfrom.c", |
| 694 "//fusl/src/network/recvmmsg.c", |
| 695 "//fusl/src/network/recvmsg.c", |
| 696 "//fusl/src/network/res_init.c", |
| 697 "//fusl/src/network/res_mkquery.c", |
| 698 "//fusl/src/network/res_msend.c", |
| 699 "//fusl/src/network/res_query.c", |
| 700 "//fusl/src/network/res_querydomain.c", |
| 701 "//fusl/src/network/res_send.c", |
| 702 "//fusl/src/network/res_state.c", |
| 703 "//fusl/src/network/send.c", |
| 704 "//fusl/src/network/sendmmsg.c", |
| 705 "//fusl/src/network/sendmsg.c", |
| 706 "//fusl/src/network/sendto.c", |
| 707 "//fusl/src/network/serv.c", |
| 708 "//fusl/src/network/setsockopt.c", |
| 709 "//fusl/src/network/shutdown.c", |
| 710 "//fusl/src/network/sockatmark.c", |
| 711 "//fusl/src/network/socket.c", |
| 712 "//fusl/src/network/socketpair.c", |
| 713 "//fusl/src/passwd/fgetgrent.c", |
| 714 "//fusl/src/passwd/fgetpwent.c", |
| 715 "//fusl/src/passwd/fgetspent.c", |
| 716 "//fusl/src/passwd/getgr_a.c", |
| 717 "//fusl/src/passwd/getgr_r.c", |
| 718 "//fusl/src/passwd/getgrent.c", |
| 719 "//fusl/src/passwd/getgrent_a.c", |
| 720 "//fusl/src/passwd/getgrouplist.c", |
| 721 "//fusl/src/passwd/getpw_a.c", |
| 722 "//fusl/src/passwd/getpw_r.c", |
| 723 "//fusl/src/passwd/getpwent.c", |
| 724 "//fusl/src/passwd/getpwent_a.c", |
| 725 "//fusl/src/passwd/getspent.c", |
| 726 "//fusl/src/passwd/getspnam.c", |
| 727 "//fusl/src/passwd/getspnam_r.c", |
| 728 "//fusl/src/passwd/lckpwdf.c", |
| 729 "//fusl/src/passwd/nscd_query.c", |
| 730 "//fusl/src/passwd/putgrent.c", |
| 731 "//fusl/src/passwd/putpwent.c", |
| 732 "//fusl/src/passwd/putspent.c", |
| 733 "//fusl/src/prng/__rand48_step.c", |
| 734 "//fusl/src/prng/__seed48.c", |
| 735 "//fusl/src/prng/drand48.c", |
| 736 "//fusl/src/prng/lcong48.c", |
| 737 "//fusl/src/prng/lrand48.c", |
| 738 "//fusl/src/prng/mrand48.c", |
| 739 "//fusl/src/prng/rand.c", |
| 740 "//fusl/src/prng/rand_r.c", |
| 741 "//fusl/src/prng/random.c", |
| 742 "//fusl/src/prng/seed48.c", |
| 743 "//fusl/src/prng/srand48.c", |
| 744 "//fusl/src/process/execl.c", |
| 745 "//fusl/src/process/execle.c", |
| 746 "//fusl/src/process/execlp.c", |
| 747 "//fusl/src/process/execv.c", |
| 748 "//fusl/src/process/execve.c", |
| 749 "//fusl/src/process/execvp.c", |
| 750 "//fusl/src/process/fexecve.c", |
| 751 "//fusl/src/process/fork.c", |
| 752 "//fusl/src/process/posix_spawn.c", |
| 753 "//fusl/src/process/posix_spawn_file_actions_addclose.c", |
| 754 "//fusl/src/process/posix_spawn_file_actions_adddup2.c", |
| 755 "//fusl/src/process/posix_spawn_file_actions_addopen.c", |
| 756 "//fusl/src/process/posix_spawn_file_actions_destroy.c", |
| 757 "//fusl/src/process/posix_spawn_file_actions_init.c", |
| 758 "//fusl/src/process/posix_spawnattr_destroy.c", |
| 759 "//fusl/src/process/posix_spawnattr_getflags.c", |
| 760 "//fusl/src/process/posix_spawnattr_getpgroup.c", |
| 761 "//fusl/src/process/posix_spawnattr_getsigdefault.c", |
| 762 "//fusl/src/process/posix_spawnattr_getsigmask.c", |
| 763 "//fusl/src/process/posix_spawnattr_init.c", |
| 764 "//fusl/src/process/posix_spawnattr_sched.c", |
| 765 "//fusl/src/process/posix_spawnattr_setflags.c", |
| 766 "//fusl/src/process/posix_spawnattr_setpgroup.c", |
| 767 "//fusl/src/process/posix_spawnattr_setsigdefault.c", |
| 768 "//fusl/src/process/posix_spawnattr_setsigmask.c", |
| 769 "//fusl/src/process/posix_spawnp.c", |
| 770 "//fusl/src/process/system.c", |
| 771 "//fusl/src/process/vfork.c", |
| 772 "//fusl/src/process/wait.c", |
| 773 "//fusl/src/process/waitid.c", |
| 774 "//fusl/src/process/waitpid.c", |
| 775 "//fusl/src/regex/fnmatch.c", |
| 776 "//fusl/src/regex/glob.c", |
| 777 "//fusl/src/regex/regcomp.c", |
| 778 "//fusl/src/regex/regerror.c", |
| 779 "//fusl/src/regex/regexec.c", |
| 780 "//fusl/src/regex/tre-mem.c", |
| 781 "//fusl/src/sched/affinity.c", |
| 782 "//fusl/src/sched/sched_cpucount.c", |
| 783 "//fusl/src/sched/sched_get_priority_max.c", |
| 784 "//fusl/src/sched/sched_getparam.c", |
| 785 "//fusl/src/sched/sched_getscheduler.c", |
| 786 "//fusl/src/sched/sched_rr_get_interval.c", |
| 787 "//fusl/src/sched/sched_setparam.c", |
| 788 "//fusl/src/sched/sched_setscheduler.c", |
| 789 "//fusl/src/sched/sched_yield.c", |
| 790 "//fusl/src/search/hsearch.c", |
| 791 "//fusl/src/search/insque.c", |
| 792 "//fusl/src/search/lsearch.c", |
| 793 "//fusl/src/search/tdestroy.c", |
| 794 "//fusl/src/search/tsearch_avl.c", |
| 795 "//fusl/src/select/poll.c", |
| 796 "//fusl/src/select/pselect.c", |
| 797 "//fusl/src/select/select.c", |
| 798 "//fusl/src/setjmp/longjmp.c", |
| 799 "//fusl/src/setjmp/setjmp.c", |
| 800 "//fusl/src/signal/block.c", |
| 801 "//fusl/src/signal/getitimer.c", |
| 802 "//fusl/src/signal/kill.c", |
| 803 "//fusl/src/signal/killpg.c", |
| 804 "//fusl/src/signal/psiginfo.c", |
| 805 "//fusl/src/signal/psignal.c", |
| 806 "//fusl/src/signal/raise.c", |
| 807 "//fusl/src/signal/restore.c", |
| 808 "//fusl/src/signal/setitimer.c", |
| 809 "//fusl/src/signal/sigaction.c", |
| 810 "//fusl/src/signal/sigaddset.c", |
| 811 "//fusl/src/signal/sigaltstack.c", |
| 812 "//fusl/src/signal/sigandset.c", |
| 813 "//fusl/src/signal/sigdelset.c", |
| 814 "//fusl/src/signal/sigemptyset.c", |
| 815 "//fusl/src/signal/sigfillset.c", |
| 816 "//fusl/src/signal/sighold.c", |
| 817 "//fusl/src/signal/sigignore.c", |
| 818 "//fusl/src/signal/siginterrupt.c", |
| 819 "//fusl/src/signal/sigisemptyset.c", |
| 820 "//fusl/src/signal/sigismember.c", |
| 821 "//fusl/src/signal/siglongjmp.c", |
| 822 "//fusl/src/signal/signal.c", |
| 823 "//fusl/src/signal/sigorset.c", |
| 824 "//fusl/src/signal/sigpause.c", |
| 825 "//fusl/src/signal/sigpending.c", |
| 826 "//fusl/src/signal/sigprocmask.c", |
| 827 "//fusl/src/signal/sigqueue.c", |
| 828 "//fusl/src/signal/sigrelse.c", |
| 829 "//fusl/src/signal/sigrtmax.c", |
| 830 "//fusl/src/signal/sigrtmin.c", |
| 831 "//fusl/src/signal/sigset.c", |
| 832 "//fusl/src/signal/sigsetjmp.c", |
| 833 "//fusl/src/signal/sigsetjmp_tail.c", |
| 834 "//fusl/src/signal/sigsuspend.c", |
| 835 "//fusl/src/signal/sigtimedwait.c", |
| 836 "//fusl/src/signal/sigwait.c", |
| 837 "//fusl/src/signal/sigwaitinfo.c", |
| 838 "//fusl/src/stat/__xstat.c", |
| 839 "//fusl/src/stat/chmod.c", |
| 840 "//fusl/src/stat/fchmod.c", |
| 841 "//fusl/src/stat/fchmodat.c", |
| 842 "//fusl/src/stat/fstat.c", |
| 843 "//fusl/src/stat/fstatat.c", |
| 844 "//fusl/src/stat/futimens.c", |
| 845 "//fusl/src/stat/futimesat.c", |
| 846 "//fusl/src/stat/lchmod.c", |
| 847 "//fusl/src/stat/lstat.c", |
| 848 "//fusl/src/stat/mkdir.c", |
| 849 "//fusl/src/stat/mkdirat.c", |
| 850 "//fusl/src/stat/mkfifo.c", |
| 851 "//fusl/src/stat/mkfifoat.c", |
| 852 "//fusl/src/stat/mknod.c", |
| 853 "//fusl/src/stat/mknodat.c", |
| 854 "//fusl/src/stat/stat.c", |
| 855 "//fusl/src/stat/statvfs.c", |
| 856 "//fusl/src/stat/umask.c", |
| 857 "//fusl/src/stat/utimensat.c", |
| 858 "//fusl/src/stdio/__fclose_ca.c", |
| 859 "//fusl/src/stdio/__fdopen.c", |
| 860 "//fusl/src/stdio/__fmodeflags.c", |
| 861 "//fusl/src/stdio/__fopen_rb_ca.c", |
| 862 "//fusl/src/stdio/__lockfile.c", |
| 863 "//fusl/src/stdio/__overflow.c", |
| 864 "//fusl/src/stdio/__stdio_close.c", |
| 865 "//fusl/src/stdio/__stdio_exit.c", |
| 866 "//fusl/src/stdio/__stdio_read.c", |
| 867 "//fusl/src/stdio/__stdio_seek.c", |
| 868 "//fusl/src/stdio/__stdio_write.c", |
| 869 "//fusl/src/stdio/__stdout_write.c", |
| 870 "//fusl/src/stdio/__string_read.c", |
| 871 "//fusl/src/stdio/__toread.c", |
| 872 "//fusl/src/stdio/__towrite.c", |
| 873 "//fusl/src/stdio/__uflow.c", |
| 874 "//fusl/src/stdio/asprintf.c", |
| 875 "//fusl/src/stdio/clearerr.c", |
| 876 "//fusl/src/stdio/dprintf.c", |
| 877 "//fusl/src/stdio/ext.c", |
| 878 "//fusl/src/stdio/ext2.c", |
| 879 "//fusl/src/stdio/fclose.c", |
| 880 "//fusl/src/stdio/feof.c", |
| 881 "//fusl/src/stdio/ferror.c", |
| 882 "//fusl/src/stdio/fflush.c", |
| 883 "//fusl/src/stdio/fgetc.c", |
| 884 "//fusl/src/stdio/fgetln.c", |
| 885 "//fusl/src/stdio/fgetpos.c", |
| 886 "//fusl/src/stdio/fgets.c", |
| 887 "//fusl/src/stdio/fgetwc.c", |
| 888 "//fusl/src/stdio/fgetws.c", |
| 889 "//fusl/src/stdio/fileno.c", |
| 890 "//fusl/src/stdio/flockfile.c", |
| 891 "//fusl/src/stdio/fmemopen.c", |
| 892 "//fusl/src/stdio/fopen.c", |
| 893 "//fusl/src/stdio/fprintf.c", |
| 894 "//fusl/src/stdio/fputc.c", |
| 895 "//fusl/src/stdio/fputs.c", |
| 896 "//fusl/src/stdio/fputwc.c", |
| 897 "//fusl/src/stdio/fputws.c", |
| 898 "//fusl/src/stdio/fread.c", |
| 899 "//fusl/src/stdio/freopen.c", |
| 900 "//fusl/src/stdio/fscanf.c", |
| 901 "//fusl/src/stdio/fseek.c", |
| 902 "//fusl/src/stdio/fsetpos.c", |
| 903 "//fusl/src/stdio/ftell.c", |
| 904 "//fusl/src/stdio/ftrylockfile.c", |
| 905 "//fusl/src/stdio/funlockfile.c", |
| 906 "//fusl/src/stdio/fwide.c", |
| 907 "//fusl/src/stdio/fwprintf.c", |
| 908 "//fusl/src/stdio/fwrite.c", |
| 909 "//fusl/src/stdio/fwscanf.c", |
| 910 "//fusl/src/stdio/getc.c", |
| 911 "//fusl/src/stdio/getc_unlocked.c", |
| 912 "//fusl/src/stdio/getchar.c", |
| 913 "//fusl/src/stdio/getchar_unlocked.c", |
| 914 "//fusl/src/stdio/getdelim.c", |
| 915 "//fusl/src/stdio/getline.c", |
| 916 "//fusl/src/stdio/gets.c", |
| 917 "//fusl/src/stdio/getw.c", |
| 918 "//fusl/src/stdio/getwc.c", |
| 919 "//fusl/src/stdio/getwchar.c", |
| 920 "//fusl/src/stdio/ofl.c", |
| 921 "//fusl/src/stdio/ofl_add.c", |
| 922 "//fusl/src/stdio/open_memstream.c", |
| 923 "//fusl/src/stdio/open_wmemstream.c", |
| 924 "//fusl/src/stdio/pclose.c", |
| 925 "//fusl/src/stdio/perror.c", |
| 926 "//fusl/src/stdio/popen.c", |
| 927 "//fusl/src/stdio/printf.c", |
| 928 "//fusl/src/stdio/putc.c", |
| 929 "//fusl/src/stdio/putc_unlocked.c", |
| 930 "//fusl/src/stdio/putchar.c", |
| 931 "//fusl/src/stdio/putchar_unlocked.c", |
| 932 "//fusl/src/stdio/puts.c", |
| 933 "//fusl/src/stdio/putw.c", |
| 934 "//fusl/src/stdio/putwc.c", |
| 935 "//fusl/src/stdio/putwchar.c", |
| 936 "//fusl/src/stdio/remove.c", |
| 937 "//fusl/src/stdio/rename.c", |
| 938 "//fusl/src/stdio/rewind.c", |
| 939 "//fusl/src/stdio/scanf.c", |
| 940 "//fusl/src/stdio/setbuf.c", |
| 941 "//fusl/src/stdio/setbuffer.c", |
| 942 "//fusl/src/stdio/setlinebuf.c", |
| 943 "//fusl/src/stdio/setvbuf.c", |
| 944 "//fusl/src/stdio/snprintf.c", |
| 945 "//fusl/src/stdio/sprintf.c", |
| 946 "//fusl/src/stdio/sscanf.c", |
| 947 "//fusl/src/stdio/stderr.c", |
| 948 "//fusl/src/stdio/stdin.c", |
| 949 "//fusl/src/stdio/stdout.c", |
| 950 "//fusl/src/stdio/swprintf.c", |
| 951 "//fusl/src/stdio/swscanf.c", |
| 952 "//fusl/src/stdio/tempnam.c", |
| 953 "//fusl/src/stdio/tmpfile.c", |
| 954 "//fusl/src/stdio/tmpnam.c", |
| 955 "//fusl/src/stdio/ungetc.c", |
| 956 "//fusl/src/stdio/ungetwc.c", |
| 957 "//fusl/src/stdio/vasprintf.c", |
| 958 "//fusl/src/stdio/vdprintf.c", |
| 959 "//fusl/src/stdio/vfprintf.c", |
| 960 "//fusl/src/stdio/vfscanf.c", |
| 961 "//fusl/src/stdio/vfwprintf.c", |
| 962 "//fusl/src/stdio/vfwscanf.c", |
| 963 "//fusl/src/stdio/vprintf.c", |
| 964 "//fusl/src/stdio/vscanf.c", |
| 965 "//fusl/src/stdio/vsnprintf.c", |
| 966 "//fusl/src/stdio/vsprintf.c", |
| 967 "//fusl/src/stdio/vsscanf.c", |
| 968 "//fusl/src/stdio/vswprintf.c", |
| 969 "//fusl/src/stdio/vswscanf.c", |
| 970 "//fusl/src/stdio/vwprintf.c", |
| 971 "//fusl/src/stdio/vwscanf.c", |
| 972 "//fusl/src/stdio/wprintf.c", |
| 973 "//fusl/src/stdio/wscanf.c", |
| 974 "//fusl/src/stdlib/abs.c", |
| 975 "//fusl/src/stdlib/atof.c", |
| 976 "//fusl/src/stdlib/atoi.c", |
| 977 "//fusl/src/stdlib/atol.c", |
| 978 "//fusl/src/stdlib/atoll.c", |
| 979 "//fusl/src/stdlib/bsearch.c", |
| 980 "//fusl/src/stdlib/div.c", |
| 981 "//fusl/src/stdlib/ecvt.c", |
| 982 "//fusl/src/stdlib/fcvt.c", |
| 983 "//fusl/src/stdlib/gcvt.c", |
| 984 "//fusl/src/stdlib/imaxabs.c", |
| 985 "//fusl/src/stdlib/imaxdiv.c", |
| 986 "//fusl/src/stdlib/labs.c", |
| 987 "//fusl/src/stdlib/ldiv.c", |
| 988 "//fusl/src/stdlib/llabs.c", |
| 989 "//fusl/src/stdlib/lldiv.c", |
| 990 "//fusl/src/stdlib/qsort.c", |
| 991 "//fusl/src/stdlib/strtod.c", |
| 992 "//fusl/src/stdlib/strtol.c", |
| 993 "//fusl/src/stdlib/wcstod.c", |
| 994 "//fusl/src/stdlib/wcstol.c", |
| 995 "//fusl/src/string/bcmp.c", |
| 996 "//fusl/src/string/bcopy.c", |
| 997 "//fusl/src/string/bzero.c", |
| 998 "//fusl/src/string/index.c", |
| 999 "//fusl/src/string/memccpy.c", |
| 1000 "//fusl/src/string/memchr.c", |
| 1001 "//fusl/src/string/memcmp.c", |
| 1002 "//fusl/src/string/memcpy.c", |
| 1003 "//fusl/src/string/memmem.c", |
| 1004 "//fusl/src/string/memmove.c", |
| 1005 "//fusl/src/string/mempcpy.c", |
| 1006 "//fusl/src/string/memrchr.c", |
| 1007 "//fusl/src/string/memset.c", |
| 1008 "//fusl/src/string/rindex.c", |
| 1009 "//fusl/src/string/stpcpy.c", |
| 1010 "//fusl/src/string/stpncpy.c", |
| 1011 "//fusl/src/string/strcasecmp.c", |
| 1012 "//fusl/src/string/strcasestr.c", |
| 1013 "//fusl/src/string/strcat.c", |
| 1014 "//fusl/src/string/strchr.c", |
| 1015 "//fusl/src/string/strchrnul.c", |
| 1016 "//fusl/src/string/strcmp.c", |
| 1017 "//fusl/src/string/strcpy.c", |
| 1018 "//fusl/src/string/strcspn.c", |
| 1019 "//fusl/src/string/strdup.c", |
| 1020 "//fusl/src/string/strerror_r.c", |
| 1021 "//fusl/src/string/strlcat.c", |
| 1022 "//fusl/src/string/strlcpy.c", |
| 1023 "//fusl/src/string/strlen.c", |
| 1024 "//fusl/src/string/strncasecmp.c", |
| 1025 "//fusl/src/string/strncat.c", |
| 1026 "//fusl/src/string/strncmp.c", |
| 1027 "//fusl/src/string/strncpy.c", |
| 1028 "//fusl/src/string/strndup.c", |
| 1029 "//fusl/src/string/strnlen.c", |
| 1030 "//fusl/src/string/strpbrk.c", |
| 1031 "//fusl/src/string/strrchr.c", |
| 1032 "//fusl/src/string/strsep.c", |
| 1033 "//fusl/src/string/strsignal.c", |
| 1034 "//fusl/src/string/strspn.c", |
| 1035 "//fusl/src/string/strstr.c", |
| 1036 "//fusl/src/string/strtok.c", |
| 1037 "//fusl/src/string/strtok_r.c", |
| 1038 "//fusl/src/string/strverscmp.c", |
| 1039 "//fusl/src/string/swab.c", |
| 1040 "//fusl/src/string/wcpcpy.c", |
| 1041 "//fusl/src/string/wcpncpy.c", |
| 1042 "//fusl/src/string/wcscasecmp.c", |
| 1043 "//fusl/src/string/wcscasecmp_l.c", |
| 1044 "//fusl/src/string/wcscat.c", |
| 1045 "//fusl/src/string/wcschr.c", |
| 1046 "//fusl/src/string/wcscmp.c", |
| 1047 "//fusl/src/string/wcscpy.c", |
| 1048 "//fusl/src/string/wcscspn.c", |
| 1049 "//fusl/src/string/wcsdup.c", |
| 1050 "//fusl/src/string/wcslen.c", |
| 1051 "//fusl/src/string/wcsncasecmp.c", |
| 1052 "//fusl/src/string/wcsncasecmp_l.c", |
| 1053 "//fusl/src/string/wcsncat.c", |
| 1054 "//fusl/src/string/wcsncmp.c", |
| 1055 "//fusl/src/string/wcsncpy.c", |
| 1056 "//fusl/src/string/wcsnlen.c", |
| 1057 "//fusl/src/string/wcspbrk.c", |
| 1058 "//fusl/src/string/wcsrchr.c", |
| 1059 "//fusl/src/string/wcsspn.c", |
| 1060 "//fusl/src/string/wcsstr.c", |
| 1061 "//fusl/src/string/wcstok.c", |
| 1062 "//fusl/src/string/wcswcs.c", |
| 1063 "//fusl/src/string/wmemchr.c", |
| 1064 "//fusl/src/string/wmemcmp.c", |
| 1065 "//fusl/src/string/wmemcpy.c", |
| 1066 "//fusl/src/string/wmemmove.c", |
| 1067 "//fusl/src/string/wmemset.c", |
| 1068 "//fusl/src/temp/__randname.c", |
| 1069 "//fusl/src/temp/mkdtemp.c", |
| 1070 "//fusl/src/temp/mkostemp.c", |
| 1071 "//fusl/src/temp/mkostemps.c", |
| 1072 "//fusl/src/temp/mkstemp.c", |
| 1073 "//fusl/src/temp/mkstemps.c", |
| 1074 "//fusl/src/temp/mktemp.c", |
| 1075 "//fusl/src/termios/cfgetospeed.c", |
| 1076 "//fusl/src/termios/cfmakeraw.c", |
| 1077 "//fusl/src/termios/cfsetospeed.c", |
| 1078 "//fusl/src/termios/tcdrain.c", |
| 1079 "//fusl/src/termios/tcflow.c", |
| 1080 "//fusl/src/termios/tcflush.c", |
| 1081 "//fusl/src/termios/tcgetattr.c", |
| 1082 "//fusl/src/termios/tcgetsid.c", |
| 1083 "//fusl/src/termios/tcsendbreak.c", |
| 1084 "//fusl/src/termios/tcsetattr.c", |
| 1085 "//fusl/src/thread/__futex.c", |
| 1086 "//fusl/src/thread/__lock.c", |
| 1087 "//fusl/src/thread/__set_thread_area.c", |
| 1088 "//fusl/src/thread/__syscall_cp.c", |
| 1089 "//fusl/src/thread/__timedwait.c", |
| 1090 "//fusl/src/thread/__tls_get_addr.c", |
| 1091 "//fusl/src/thread/__unmapself.c", |
| 1092 "//fusl/src/thread/__wait.c", |
| 1093 "//fusl/src/thread/call_once.c", |
| 1094 "//fusl/src/thread/clone.c", |
| 1095 "//fusl/src/thread/cnd_broadcast.c", |
| 1096 "//fusl/src/thread/cnd_destroy.c", |
| 1097 "//fusl/src/thread/cnd_init.c", |
| 1098 "//fusl/src/thread/cnd_signal.c", |
| 1099 "//fusl/src/thread/cnd_timedwait.c", |
| 1100 "//fusl/src/thread/cnd_wait.c", |
| 1101 "//fusl/src/thread/lock_ptc.c", |
| 1102 "//fusl/src/thread/mtx_destroy.c", |
| 1103 "//fusl/src/thread/mtx_init.c", |
| 1104 "//fusl/src/thread/mtx_lock.c", |
| 1105 "//fusl/src/thread/mtx_timedlock.c", |
| 1106 "//fusl/src/thread/mtx_trylock.c", |
| 1107 "//fusl/src/thread/mtx_unlock.c", |
| 1108 "//fusl/src/thread/pthread_atfork.c", |
| 1109 "//fusl/src/thread/pthread_attr_destroy.c", |
| 1110 "//fusl/src/thread/pthread_attr_get.c", |
| 1111 "//fusl/src/thread/pthread_attr_init.c", |
| 1112 "//fusl/src/thread/pthread_attr_setdetachstate.c", |
| 1113 "//fusl/src/thread/pthread_attr_setguardsize.c", |
| 1114 "//fusl/src/thread/pthread_attr_setinheritsched.c", |
| 1115 "//fusl/src/thread/pthread_attr_setschedparam.c", |
| 1116 "//fusl/src/thread/pthread_attr_setschedpolicy.c", |
| 1117 "//fusl/src/thread/pthread_attr_setscope.c", |
| 1118 "//fusl/src/thread/pthread_attr_setstack.c", |
| 1119 "//fusl/src/thread/pthread_attr_setstacksize.c", |
| 1120 "//fusl/src/thread/pthread_barrier_destroy.c", |
| 1121 "//fusl/src/thread/pthread_barrier_init.c", |
| 1122 "//fusl/src/thread/pthread_barrier_wait.c", |
| 1123 "//fusl/src/thread/pthread_barrierattr_destroy.c", |
| 1124 "//fusl/src/thread/pthread_barrierattr_init.c", |
| 1125 "//fusl/src/thread/pthread_barrierattr_setpshared.c", |
| 1126 "//fusl/src/thread/pthread_cancel.c", |
| 1127 "//fusl/src/thread/pthread_cleanup_push.c", |
| 1128 "//fusl/src/thread/pthread_cond_broadcast.c", |
| 1129 "//fusl/src/thread/pthread_cond_destroy.c", |
| 1130 "//fusl/src/thread/pthread_cond_init.c", |
| 1131 "//fusl/src/thread/pthread_cond_signal.c", |
| 1132 "//fusl/src/thread/pthread_cond_timedwait.c", |
| 1133 "//fusl/src/thread/pthread_cond_wait.c", |
| 1134 "//fusl/src/thread/pthread_condattr_destroy.c", |
| 1135 "//fusl/src/thread/pthread_condattr_init.c", |
| 1136 "//fusl/src/thread/pthread_condattr_setclock.c", |
| 1137 "//fusl/src/thread/pthread_condattr_setpshared.c", |
| 1138 "//fusl/src/thread/pthread_create.c", |
| 1139 "//fusl/src/thread/pthread_detach.c", |
| 1140 "//fusl/src/thread/pthread_equal.c", |
| 1141 "//fusl/src/thread/pthread_getattr_np.c", |
| 1142 "//fusl/src/thread/pthread_getconcurrency.c", |
| 1143 "//fusl/src/thread/pthread_getcpuclockid.c", |
| 1144 "//fusl/src/thread/pthread_getschedparam.c", |
| 1145 "//fusl/src/thread/pthread_getspecific.c", |
| 1146 "//fusl/src/thread/pthread_join.c", |
| 1147 "//fusl/src/thread/pthread_key_create.c", |
| 1148 "//fusl/src/thread/pthread_kill.c", |
| 1149 "//fusl/src/thread/pthread_mutex_consistent.c", |
| 1150 "//fusl/src/thread/pthread_mutex_destroy.c", |
| 1151 "//fusl/src/thread/pthread_mutex_getprioceiling.c", |
| 1152 "//fusl/src/thread/pthread_mutex_init.c", |
| 1153 "//fusl/src/thread/pthread_mutex_lock.c", |
| 1154 "//fusl/src/thread/pthread_mutex_setprioceiling.c", |
| 1155 "//fusl/src/thread/pthread_mutex_timedlock.c", |
| 1156 "//fusl/src/thread/pthread_mutex_trylock.c", |
| 1157 "//fusl/src/thread/pthread_mutex_unlock.c", |
| 1158 "//fusl/src/thread/pthread_mutexattr_destroy.c", |
| 1159 "//fusl/src/thread/pthread_mutexattr_init.c", |
| 1160 "//fusl/src/thread/pthread_mutexattr_setprotocol.c", |
| 1161 "//fusl/src/thread/pthread_mutexattr_setpshared.c", |
| 1162 "//fusl/src/thread/pthread_mutexattr_setrobust.c", |
| 1163 "//fusl/src/thread/pthread_mutexattr_settype.c", |
| 1164 "//fusl/src/thread/pthread_once.c", |
| 1165 "//fusl/src/thread/pthread_rwlock_destroy.c", |
| 1166 "//fusl/src/thread/pthread_rwlock_init.c", |
| 1167 "//fusl/src/thread/pthread_rwlock_rdlock.c", |
| 1168 "//fusl/src/thread/pthread_rwlock_timedrdlock.c", |
| 1169 "//fusl/src/thread/pthread_rwlock_timedwrlock.c", |
| 1170 "//fusl/src/thread/pthread_rwlock_tryrdlock.c", |
| 1171 "//fusl/src/thread/pthread_rwlock_trywrlock.c", |
| 1172 "//fusl/src/thread/pthread_rwlock_unlock.c", |
| 1173 "//fusl/src/thread/pthread_rwlock_wrlock.c", |
| 1174 "//fusl/src/thread/pthread_rwlockattr_destroy.c", |
| 1175 "//fusl/src/thread/pthread_rwlockattr_init.c", |
| 1176 "//fusl/src/thread/pthread_rwlockattr_setpshared.c", |
| 1177 "//fusl/src/thread/pthread_self.c", |
| 1178 "//fusl/src/thread/pthread_setcancelstate.c", |
| 1179 "//fusl/src/thread/pthread_setcanceltype.c", |
| 1180 "//fusl/src/thread/pthread_setconcurrency.c", |
| 1181 "//fusl/src/thread/pthread_setschedparam.c", |
| 1182 "//fusl/src/thread/pthread_setschedprio.c", |
| 1183 "//fusl/src/thread/pthread_setspecific.c", |
| 1184 "//fusl/src/thread/pthread_sigmask.c", |
| 1185 "//fusl/src/thread/pthread_spin_destroy.c", |
| 1186 "//fusl/src/thread/pthread_spin_init.c", |
| 1187 "//fusl/src/thread/pthread_spin_lock.c", |
| 1188 "//fusl/src/thread/pthread_spin_trylock.c", |
| 1189 "//fusl/src/thread/pthread_spin_unlock.c", |
| 1190 "//fusl/src/thread/pthread_testcancel.c", |
| 1191 "//fusl/src/thread/sem_destroy.c", |
| 1192 "//fusl/src/thread/sem_getvalue.c", |
| 1193 "//fusl/src/thread/sem_init.c", |
| 1194 "//fusl/src/thread/sem_open.c", |
| 1195 "//fusl/src/thread/sem_post.c", |
| 1196 "//fusl/src/thread/sem_timedwait.c", |
| 1197 "//fusl/src/thread/sem_trywait.c", |
| 1198 "//fusl/src/thread/sem_unlink.c", |
| 1199 "//fusl/src/thread/sem_wait.c", |
| 1200 "//fusl/src/thread/synccall.c", |
| 1201 "//fusl/src/thread/syscall_cp.c", |
| 1202 "//fusl/src/thread/thrd_create.c", |
| 1203 "//fusl/src/thread/thrd_exit.c", |
| 1204 "//fusl/src/thread/thrd_join.c", |
| 1205 "//fusl/src/thread/thrd_sleep.c", |
| 1206 "//fusl/src/thread/thrd_yield.c", |
| 1207 "//fusl/src/thread/tls.c", |
| 1208 "//fusl/src/thread/tss_create.c", |
| 1209 "//fusl/src/thread/tss_delete.c", |
| 1210 "//fusl/src/thread/tss_set.c", |
| 1211 "//fusl/src/thread/vmlock.c", |
| 1212 "//fusl/src/time/__asctime.c", |
| 1213 "//fusl/src/time/__map_file.c", |
| 1214 "//fusl/src/time/__month_to_secs.c", |
| 1215 "//fusl/src/time/__secs_to_tm.c", |
| 1216 "//fusl/src/time/__tm_to_secs.c", |
| 1217 "//fusl/src/time/__tz.c", |
| 1218 "//fusl/src/time/__year_to_secs.c", |
| 1219 "//fusl/src/time/asctime.c", |
| 1220 "//fusl/src/time/asctime_r.c", |
| 1221 "//fusl/src/time/clock.c", |
| 1222 "//fusl/src/time/clock_getcpuclockid.c", |
| 1223 "//fusl/src/time/clock_getres.c", |
| 1224 "//fusl/src/time/clock_gettime.c", |
| 1225 "//fusl/src/time/clock_nanosleep.c", |
| 1226 "//fusl/src/time/clock_settime.c", |
| 1227 "//fusl/src/time/ctime.c", |
| 1228 "//fusl/src/time/ctime_r.c", |
| 1229 "//fusl/src/time/difftime.c", |
| 1230 "//fusl/src/time/ftime.c", |
| 1231 "//fusl/src/time/getdate.c", |
| 1232 "//fusl/src/time/gettimeofday.c", |
| 1233 "//fusl/src/time/gmtime.c", |
| 1234 "//fusl/src/time/gmtime_r.c", |
| 1235 "//fusl/src/time/localtime.c", |
| 1236 "//fusl/src/time/localtime_r.c", |
| 1237 "//fusl/src/time/mktime.c", |
| 1238 "//fusl/src/time/nanosleep.c", |
| 1239 "//fusl/src/time/strftime.c", |
| 1240 "//fusl/src/time/strptime.c", |
| 1241 "//fusl/src/time/time.c", |
| 1242 "//fusl/src/time/timegm.c", |
| 1243 "//fusl/src/time/timer_create.c", |
| 1244 "//fusl/src/time/timer_delete.c", |
| 1245 "//fusl/src/time/timer_getoverrun.c", |
| 1246 "//fusl/src/time/timer_gettime.c", |
| 1247 "//fusl/src/time/timer_settime.c", |
| 1248 "//fusl/src/time/times.c", |
| 1249 "//fusl/src/time/timespec_get.c", |
| 1250 "//fusl/src/time/utime.c", |
| 1251 "//fusl/src/time/wcsftime.c", |
| 1252 "//fusl/src/unistd/_exit.c", |
| 1253 "//fusl/src/unistd/access.c", |
| 1254 "//fusl/src/unistd/acct.c", |
| 1255 "//fusl/src/unistd/alarm.c", |
| 1256 "//fusl/src/unistd/chdir.c", |
| 1257 "//fusl/src/unistd/chown.c", |
| 1258 "//fusl/src/unistd/close.c", |
| 1259 "//fusl/src/unistd/ctermid.c", |
| 1260 "//fusl/src/unistd/dup.c", |
| 1261 "//fusl/src/unistd/dup2.c", |
| 1262 "//fusl/src/unistd/dup3.c", |
| 1263 "//fusl/src/unistd/faccessat.c", |
| 1264 "//fusl/src/unistd/fchdir.c", |
| 1265 "//fusl/src/unistd/fchown.c", |
| 1266 "//fusl/src/unistd/fchownat.c", |
| 1267 "//fusl/src/unistd/fdatasync.c", |
| 1268 "//fusl/src/unistd/fsync.c", |
| 1269 "//fusl/src/unistd/ftruncate.c", |
| 1270 "//fusl/src/unistd/getcwd.c", |
| 1271 "//fusl/src/unistd/getegid.c", |
| 1272 "//fusl/src/unistd/geteuid.c", |
| 1273 "//fusl/src/unistd/getgid.c", |
| 1274 "//fusl/src/unistd/getgroups.c", |
| 1275 "//fusl/src/unistd/gethostname.c", |
| 1276 "//fusl/src/unistd/getlogin.c", |
| 1277 "//fusl/src/unistd/getlogin_r.c", |
| 1278 "//fusl/src/unistd/getpgid.c", |
| 1279 "//fusl/src/unistd/getpgrp.c", |
| 1280 "//fusl/src/unistd/getpid.c", |
| 1281 "//fusl/src/unistd/getppid.c", |
| 1282 "//fusl/src/unistd/getsid.c", |
| 1283 "//fusl/src/unistd/getuid.c", |
| 1284 "//fusl/src/unistd/isatty.c", |
| 1285 "//fusl/src/unistd/lchown.c", |
| 1286 "//fusl/src/unistd/link.c", |
| 1287 "//fusl/src/unistd/linkat.c", |
| 1288 "//fusl/src/unistd/lseek.c", |
| 1289 "//fusl/src/unistd/nice.c", |
| 1290 "//fusl/src/unistd/pause.c", |
| 1291 "//fusl/src/unistd/pipe.c", |
| 1292 "//fusl/src/unistd/pipe2.c", |
| 1293 "//fusl/src/unistd/posix_close.c", |
| 1294 "//fusl/src/unistd/pread.c", |
| 1295 "//fusl/src/unistd/preadv.c", |
| 1296 "//fusl/src/unistd/pwrite.c", |
| 1297 "//fusl/src/unistd/pwritev.c", |
| 1298 "//fusl/src/unistd/read.c", |
| 1299 "//fusl/src/unistd/readlink.c", |
| 1300 "//fusl/src/unistd/readlinkat.c", |
| 1301 "//fusl/src/unistd/readv.c", |
| 1302 "//fusl/src/unistd/renameat.c", |
| 1303 "//fusl/src/unistd/rmdir.c", |
| 1304 "//fusl/src/unistd/setegid.c", |
| 1305 "//fusl/src/unistd/seteuid.c", |
| 1306 "//fusl/src/unistd/setgid.c", |
| 1307 "//fusl/src/unistd/setpgid.c", |
| 1308 "//fusl/src/unistd/setpgrp.c", |
| 1309 "//fusl/src/unistd/setregid.c", |
| 1310 "//fusl/src/unistd/setresgid.c", |
| 1311 "//fusl/src/unistd/setresuid.c", |
| 1312 "//fusl/src/unistd/setreuid.c", |
| 1313 "//fusl/src/unistd/setsid.c", |
| 1314 "//fusl/src/unistd/setuid.c", |
| 1315 "//fusl/src/unistd/setxid.c", |
| 1316 "//fusl/src/unistd/sleep.c", |
| 1317 "//fusl/src/unistd/symlink.c", |
| 1318 "//fusl/src/unistd/symlinkat.c", |
| 1319 "//fusl/src/unistd/sync.c", |
| 1320 "//fusl/src/unistd/tcgetpgrp.c", |
| 1321 "//fusl/src/unistd/tcsetpgrp.c", |
| 1322 "//fusl/src/unistd/truncate.c", |
| 1323 "//fusl/src/unistd/ttyname.c", |
| 1324 "//fusl/src/unistd/ttyname_r.c", |
| 1325 "//fusl/src/unistd/ualarm.c", |
| 1326 "//fusl/src/unistd/unlink.c", |
| 1327 "//fusl/src/unistd/unlinkat.c", |
| 1328 "//fusl/src/unistd/usleep.c", |
| 1329 "//fusl/src/unistd/write.c", |
| 1330 "//fusl/src/unistd/writev.c", |
| 1331 ] |
| 1332 |
| 1333 # Arch specific sources. |
| 1334 sources += [ |
| 1335 "//fusl/src/fenv/x86_64/fenv.s", |
| 1336 "//fusl/src/internal/x86_64/syscall.s", |
| 1337 "//fusl/src/ldso/x86_64/dlsym.s", |
| 1338 "//fusl/src/ldso/x86_64/tlsdesc.s", |
| 1339 "//fusl/src/math/x86_64/__invtrigl.s", |
| 1340 "//fusl/src/math/x86_64/acosl.s", |
| 1341 "//fusl/src/math/x86_64/asinl.s", |
| 1342 "//fusl/src/math/x86_64/atan2l.s", |
| 1343 "//fusl/src/math/x86_64/atanl.s", |
| 1344 "//fusl/src/math/x86_64/ceill.s", |
| 1345 "//fusl/src/math/x86_64/exp2l.s", |
| 1346 "//fusl/src/math/x86_64/expl.s", |
| 1347 "//fusl/src/math/x86_64/expm1l.s", |
| 1348 "//fusl/src/math/x86_64/fabs.s", |
| 1349 "//fusl/src/math/x86_64/fabsf.s", |
| 1350 "//fusl/src/math/x86_64/fabsl.s", |
| 1351 "//fusl/src/math/x86_64/floorl.s", |
| 1352 "//fusl/src/math/x86_64/fmodl.s", |
| 1353 "//fusl/src/math/x86_64/llrint.s", |
| 1354 "//fusl/src/math/x86_64/llrintf.s", |
| 1355 "//fusl/src/math/x86_64/llrintl.s", |
| 1356 "//fusl/src/math/x86_64/log10l.s", |
| 1357 "//fusl/src/math/x86_64/log1pl.s", |
| 1358 "//fusl/src/math/x86_64/log2l.s", |
| 1359 "//fusl/src/math/x86_64/logl.s", |
| 1360 "//fusl/src/math/x86_64/lrint.s", |
| 1361 "//fusl/src/math/x86_64/lrintf.s", |
| 1362 "//fusl/src/math/x86_64/lrintl.s", |
| 1363 "//fusl/src/math/x86_64/remainderl.s", |
| 1364 "//fusl/src/math/x86_64/rintl.s", |
| 1365 "//fusl/src/math/x86_64/sqrt.s", |
| 1366 "//fusl/src/math/x86_64/sqrtf.s", |
| 1367 "//fusl/src/math/x86_64/sqrtl.s", |
| 1368 "//fusl/src/math/x86_64/truncl.s", |
| 1369 "//fusl/src/process/x86_64/vfork.s", |
| 1370 "//fusl/src/setjmp/x86_64/longjmp.s", |
| 1371 "//fusl/src/setjmp/x86_64/setjmp.s", |
| 1372 "//fusl/src/signal/x86_64/restore.s", |
| 1373 "//fusl/src/signal/x86_64/sigsetjmp.s", |
| 1374 "//fusl/src/string/x86_64/memcpy.s", |
| 1375 "//fusl/src/string/x86_64/memmove.s", |
| 1376 "//fusl/src/string/x86_64/memset.s", |
| 1377 "//fusl/src/thread/x86_64/__set_thread_area.s", |
| 1378 "//fusl/src/thread/x86_64/__unmapself.s", |
| 1379 "//fusl/src/thread/x86_64/clone.s", |
| 1380 "//fusl/src/thread/x86_64/syscall_cp.s", |
| 1381 ] |
| 1382 } |
OLD | NEW |