summaryrefslogtreecommitdiff
path: root/libc
AgeCommit message (Collapse)Author
2006-01-06Allow to build gcc/libstdc++ w/ LOCALE enabled, XLOCALE probably won't work ↵Peter S. Mazinger
though
2006-01-06Allow compiling newly added if_index.c (at least on 2.4), missing ↵Peter S. Mazinger
__u32/__u16/__s32
2006-01-06as weber notes in Bug 99:Mike Frysinger
if_nameindex doesnt list all of my interfaces! this is because we are still using the old style ioctl(SIOCGIFINDEX) for gathering interface names/indexes. while this code is pretty small, the kernel does not return all interfaces via this method. so we import the new style netlink code from glibc and make it optional so those people who need the full functionality can get it.
2006-01-06create __if_nametoindex hidden alias and use itMike Frysinger
2006-01-06use hidden strcmpMike Frysinger
2006-01-06used hidden closeMike Frysinger
2006-01-06use hidden read/write symbolsMike Frysinger
2006-01-06rework the alloca() loop slightly to save some spaceMike Frysinger
2006-01-06sync with glibcMike Frysinger
2006-01-06update libc lock functions to new pthread forwardingMike Frysinger
2006-01-05grab syscall macros from linux headersMike Frysinger
2006-01-05grammar fixMike Frysinger
2006-01-05use tabs for whitespaceMike Frysinger
2006-01-05sync Joseph S. Myers fixes from glibc for proper clobbersMike Frysinger
2006-01-05sync Joseph S. Myers fixes from glibc for a better NAN defineMike Frysinger
2006-01-05sync __SYSCALL_CLOBBERS macro from glibcMike Frysinger
2006-01-05implement syscall6Mike Frysinger
2006-01-05remove duplicate ;Mike Frysinger
2006-01-05forgot again about iconvPeter S. Mazinger
2006-01-04one reloc less, uninline, should save some spacePeter S. Mazinger
2006-01-04use internal versions of exit/memcpyPeter S. Mazinger
2006-01-04need our own version to prevent warningsMike Frysinger
2006-01-04update build filesMike Frysinger
2006-01-04update buildsystem to new styleMike Frysinger
2006-01-04Bug 618, Thomas Chou: update crt to new 0.9.28 uClibc styleMike Frysinger
2006-01-04unusedMike Frysinger
2006-01-04now we can safely declare these hiddenMike Frysinger
2006-01-04update pthread weak handling to the style glibc usesMike Frysinger
2006-01-04tweak __progname handling some more since some [bad] apps actually try and ↵Mike Frysinger
use it
2006-01-04use weak handling instead of .setMike Frysinger
2006-01-04kill off some unused warningsMike Frysinger
2006-01-04if arch doesnt provide _syscall6(), we need to alias the 64bit versionMike Frysinger
2006-01-03Lost wcschr()Peter S. Mazinger
2006-01-03Get rid of tolower/toupper jump reloc, correct tow* for XLOCALEPeter S. Mazinger
2006-01-03Add __toupper, remove unneeded undefs for tolowerPeter S. Mazinger
2006-01-03Provide __tolower and use itPeter S. Mazinger
2006-01-03Remove textrelPeter S. Mazinger
2006-01-03Revert a change until I find the textrel causePeter S. Mazinger
2006-01-03Complete split of all the string functions. Hope haven't broken too much. ↵Peter S. Mazinger
wcscoll/strcoll needs some love ...
2006-01-03Use strong_alias everywhere instead of .global/.set. Correct some cases ↵Peter S. Mazinger
where the non-hidden version was used.
2006-01-03tweak what is likely() in the argv[0] parsingMike Frysinger
2006-01-03add optional support for program_invocation_name/program_invocation_short_nameMike Frysinger
2006-01-03we dont need to loop calling abort() because abort() already loops for usMike Frysinger
2006-01-03fix previous commit so that __uClibc_init() is run for non-mmu cases again ↵Mike Frysinger
as report by Thomas in Bug 618
2006-01-02Use attribute_noreturnPeter S. Mazinger
2006-01-02Remove -unhonoured- commentPeter S. Mazinger
2006-01-02Remove fpu_control.h handling as wellPeter S. Mazinger
2006-01-02fpu_control.h is handled generally in topdir/Makefile.in, remove rule for itPeter S. Mazinger
2006-01-01previous st_dev change from unsigned long (4bytes) to __dev_t (8bytes) ↵Mike Frysinger
needed to shrink the pads as well to maintain ABI compat
2005-12-30fix path to heap.h as point out by thomas_chou in Bug 617Mike Frysinger