about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* make dynamic linker accept : or \n as path separatorRich Felker2013-04-201-8/+8
* getifaddrs: implement proper ipv6 netmasksrofl0r2013-04-091-2/+11
* mbrtowc: do not leave mbstate_t in permanent-fail state after EILSEQRich Felker2013-04-081-1/+1
* implement mbtowc directly, not as a wrapper for mbrtowcRich Felker2013-04-081-5/+39
* optimize mbrtowcRich Felker2013-04-081-3/+2
* fix out-of-bounds access in UTF-8 decodingRich Felker2013-04-081-1/+1
* fix signalfd not to ignore flagsRich Felker2013-04-071-1/+12
* silence nonsensical warnings in timer_createRich Felker2013-04-061-2/+2
* add support for program_invocation[_short]_nameRich Felker2013-04-062-2/+12
* fix argument omission in ABI-compat weak_alias for fscanfRich Felker2013-04-061-1/+1
* Add ABI compatability aliases.Isaac Dunham2013-04-0513-0/+38
* fix type error in pthread_create, introduced with pthread_getattr_npRich Felker2013-04-061-1/+1
* getifaddrs: remove unused labelrofl0r2013-04-061-1/+0
* getifaddrs: use if_nameindex to enumerate interfacesrofl0r2013-04-051-23/+9
* getifaddrs: one less indent levelrofl0r2013-04-051-30/+28
* getifaddrs: less mallocrofl0r2013-04-051-55/+52
* add getifaddrsrofl0r2013-04-051-0/+191
* implement dn_skipname (legacy resolver function)Rich Felker2013-04-041-0/+12
* add put*ent functions for passwd/group files and similar for shadowRich Felker2013-04-043-0/+34
* cleanup wcstombsRich Felker2013-04-041-12/+1
* cleanup mbstowcs wrapperRich Felker2013-04-041-10/+0
* minor optimization to mbstowcsRich Felker2013-04-041-2/+1
* fix incorrect range checks in wcsrtombsRich Felker2013-04-041-3/+3
* overhaul mbsrtowcsRich Felker2013-04-041-69/+64
* __time_to_tm: initialize tm_zone and tm_gmtoffrofl0r2013-04-021-0/+2
* fix typo in setpriority syscall wrapperRich Felker2013-04-011-1/+1
* implement pthread_getattr_npRich Felker2013-03-313-2/+31
* remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker2013-03-2615-23/+27
* provide emulation of fcntl F_DUPFD_CLOEXEC on old kernelsRich Felker2013-03-261-0/+16
* in pipe2, use pipe() rather than __syscall(SYS_pipe, ...) for fallbackRich Felker2013-03-251-3/+3
* rewrite popen to use posix_spawn instead of fragile vfork hacksRich Felker2013-03-241-41/+41
* remove cruft from pre-posix_spawn version of the system functionRich Felker2013-03-241-6/+0
* fix multiple bugs in syslog interfacesRich Felker2013-03-231-24/+27
* fix types for wctype_t and wctrans_tRich Felker2013-03-041-4/+4
* fix integer type issue in strverscmpRich Felker2013-02-261-1/+3
* implement non-stub strverscmpRich Felker2013-02-261-2/+35
* replace stub with working strcasestrRich Felker2013-02-211-2/+4
* fix wrong return value from wmemmove on forward copiesRich Felker2013-02-211-1/+2
* use memcmp instead of str[n]cmp for temp function XXXXXX checkingRich Felker2013-02-202-2/+2
* fix error cases in mkostemps coreRich Felker2013-02-201-6/+3
* remove leftover unused variable in mktemp after refactoringRich Felker2013-02-201-1/+0
* add mkostemp, mkstemps, and mkostemps functions and reorganize temp internalsRich Felker2013-02-206-29/+83
* remove unused #undef environ now that libc.h no longer #defines itRich Felker2013-02-171-1/+0
* consistently use the internal name __environ for environRich Felker2013-02-173-5/+4
* add fgetgrent functionRich Felker2013-02-171-0/+9
* fix typo in newly-added error message for EOWNERDEADRich Felker2013-02-071-1/+1
* improve error stringsRich Felker2013-02-071-27/+30
* base system() on posix_spawnRich Felker2013-02-031-41/+26
* fix unsigned comparison bug in posix_spawnRich Felker2013-02-031-1/+1
* overhaul posix_spawn to use CLONE_VM instead of vforkRich Felker2013-02-033-55/+125