diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-15 17:01:19 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-15 17:01:19 -0800 |
commit | c42b937808924f6b922b29d2e0fd1fe1d1b0411c (patch) | |
tree | 4027d435b6638a7e72b9519990298fb9314ecc96 /system/lib | |
parent | 8478d6aee54d6c52de16d8c58309534afbf5bf9e (diff) | |
parent | e5ccf17e84e7a5102bf9e05ffef01e6672b4c15a (diff) |
Merge branch 'incoming'
Diffstat (limited to 'system/lib')
114 files changed, 17086 insertions, 11229 deletions
diff --git a/system/lib/libc.symbols b/system/lib/libc.symbols index 561f01c1..6f80ef90 100644 --- a/system/lib/libc.symbols +++ b/system/lib/libc.symbols @@ -1,9 +1,15 @@ + T _ZNKSt16bad_array_length4whatEv T _ZNKSt20bad_array_new_length4whatEv T _ZNKSt9bad_alloc4whatEv + T _ZNSt16bad_array_lengthC1Ev + T _ZNSt16bad_array_lengthC2Ev + T _ZNSt16bad_array_lengthD0Ev + T _ZNSt16bad_array_lengthD1Ev + T _ZNSt16bad_array_lengthD2Ev T _ZNSt20bad_array_new_lengthC1Ev T _ZNSt20bad_array_new_lengthC2Ev T _ZNSt20bad_array_new_lengthD0Ev - ? _ZNSt20bad_array_new_lengthD1Ev + T _ZNSt20bad_array_new_lengthD1Ev T _ZNSt20bad_array_new_lengthD2Ev T _ZNSt9bad_allocC1Ev T _ZNSt9bad_allocC2Ev @@ -14,10 +20,15 @@ T _ZSt15set_new_handlerPFvvE T _ZSt17__throw_bad_allocv D _ZSt7nothrow + D _ZTISt16bad_array_length D _ZTISt20bad_array_new_length D _ZTISt9bad_alloc + C _ZTISt9exception + D _ZTSSt16bad_array_length D _ZTSSt20bad_array_new_length D _ZTSSt9bad_alloc + C _ZTSSt9exception + D _ZTVSt16bad_array_length D _ZTVSt20bad_array_new_length D _ZTVSt9bad_alloc W _ZdaPv @@ -28,23 +39,20 @@ W _ZnajRKSt9nothrow_t W _Znwj W _ZnwjRKSt9nothrow_t - T _err - T _errx - T _verr - T _verrx - T _vwarn - T _vwarnx - T _warn - T _warnx + T __floatscan + T __overflow + T __shgetc + T __shlim + W __strtod_l + W __strtof_l + W __strtold_l + T __toread + T __towrite + T __uflow T atof W bulk_free W calloc - W err - W errx W free - T getopt - T getopt_long - T getopt_long_only W independent_calloc W independent_comalloc W mallinfo @@ -58,24 +66,16 @@ W malloc_usable_size W mallopt W memalign - C optarg - D opterr - D optind - D optopt - C optreset W posix_memalign W pvalloc W realloc W realloc_in_place + T scalbn + T scalbnl T strtod T strtod_l T strtof + T strtof_l T strtold T strtold_l W valloc - W verr - W verrx - W vwarn - W vwarnx - W warn - W warnx diff --git a/system/lib/libc/gen/err.c b/system/lib/libc/gen/err.c deleted file mode 100644 index 218a3bfc..00000000 --- a/system/lib/libc/gen/err.c +++ /dev/null @@ -1,49 +0,0 @@ -/* $OpenBSD: err.c,v 1.11 2012/12/05 23:19:59 deraadt Exp $ */ -/*- - * Copyright (c) 1993 - * The Regents of the University of California. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. R |