summaryrefslogtreecommitdiff
path: root/libc
AgeCommit message (Collapse)Author
2002-03-25Patch from Steven J. Hill to disable __fsetlocking whenEric Andersen
threads are disabled. Bug is my fault. oops. -Erik
2002-03-22Add in a knob to disable %m supportEric Andersen
-Erik
2002-03-21Remove include file, in case it is broken. We don't need it here.Eric Andersen
-Erik
2002-03-21Support getttyent and friends so ncurses will compileEric Andersen
2002-03-21Compile in flockfile and friends by defaultEric Andersen
-Erik
2002-03-20Patch from Bart Visscher <magick@Linux-Fan.com> fixing someEric Andersen
missing pieces of the conversion to reentrant functions.
2002-03-20Doh! search-n-replace bites againEric Andersen
2002-03-20Fix compile problem when ASSUME_DEVPTS=falseEric Andersen
getpt.c: In function 'getpt': getpt.c:83: 'have_no_dev_ptmx' undeclared ... oops. -Erik
2002-03-20s/off_t/__off_t/gEric Andersen
2002-03-19Fix missing defines. Forgot to check this in.Eric Andersen
-Erik
2002-03-19Merge glibc random, which gets us a much better RNG and aEric Andersen
reentrant one as well. It is not much bigger than what we had, so... -Erik
2002-03-19Bart Visscher <magick@Linux-Fan.com> has added some missing IPV6 support, andEric Andersen
added several additional reentrant networking functions such that iptables now runs with IPV6 support.
2002-03-16Remove the C++ support stubs, since these now live elsewhere andEric Andersen
these stubs were preventing the real stuff from working properly. -Erik
2002-03-16Build crti.o and crtn.o with optimization enabledEric Andersen
-Erik
2002-03-16Fix a pointer bug in setvbuf reported by Bart Visscher <magick@Linux-Fan.com>.Manuel Novoa III
2002-03-15Add strptime, and commonize some locale stringsEric Andersen
-Erik
2002-03-15Add missing updwtmp() and fix broken makefileEric Andersen
2002-03-15Support gnu error(), patch contributed by Andrew Ip <aip@cwlinux.com>Eric Andersen
2002-03-15Fix non-elf support (in theory). Revert misguided change suggestedEric Andersen
by arcturusnetworks, since Miles Bader reports it is unnecessary. -Erik
2002-03-14Oops! When I fixed the debug flags, I forgot to make things beEric Andersen
PIC, so do that now. -Erik
2002-03-14Don't call null ctors/dtors.Eric Andersen
-Erik
2002-03-14Do not enable debugging for initfini.s and friends. Won't work anyways.Eric Andersen
-Erik
2002-03-14Add implementations of strtof() and strtold(). These are a bitEric Andersen
lame, since internally I'm just using strtod, but that keeps things small, and has the side effect of making these easy to write. -Erik
2002-03-14This should be the last piece needed to make constructors work (usingEric Andersen
a native gcc toolchain). The gcc wrapper still needs some touchups, but we seem to be _there_. Also some touchups to try and shrink uclinux binary sized by stubbing out unneeded stuff. -Erik
2002-03-14Add some symbols needed for C++ to work. Temporary hack...Eric Andersen
2002-03-14I vow to rerun _all_ the tests before making commits. :-(Manuel Novoa III
I successfully managed to blow away all the modeflags for the file _except_ the one dealing with buffering...
2002-03-13Build our own crti.o and crtn.o with a cross arch method that IEric Andersen
can live with much better the what glibc does. -Erik
2002-03-13Merge in an ugly pile of rand* functions from glibc. :(Eric Andersen
2002-03-13Modified because of the new str to int funcs.Manuel Novoa III
2002-03-13New versions of the various string to int functions which are smallerManuel Novoa III
than the old ones, even with errno setting turned on now. Also, at least on i386, we no longer need the long long helper functions for division and mod from libgcc.a.
2002-03-13Fix stdin/stdout initialization of buffering type. I had changed theManuel Novoa III
default static initiailization and forgotten to update _stdio_init().
2002-03-13Oops... forgot to update abort.c.Manuel Novoa III
2002-03-13Apply Miles Bader's missing __va_copy() fix.Manuel Novoa III
2002-03-12Fix another O_LARGEFILE bug. Also, I forget to make floating point optionalManuel Novoa III
in the new printf code.
2002-03-12So much for fcntl flags being resonably consistent across archs... (hopefully)Manuel Novoa III
fix O_APPEND and O_LARGEFILE handling in _stdio_fopen(). Someone else will have to check of course...
2002-03-12Fix fflush(NULL) and tweak _stdio_term() for the unbuffered stdio option.Manuel Novoa III
2002-03-12Oops.. had left thread support forced on.Manuel Novoa III
2002-03-12Fix a segfault in scandir for empty directories. After looking overEric Andersen
our version, I'm adopting the scandir from glibc (with minor changes) instead as it seems simpler and already correct.
2002-03-12Fixup redefinition of NL_ARGMAXEric Andersen
2002-03-12Deal with cvs "feature"... or is that cvs _user_...Manuel Novoa III
2002-03-12Swap in the new stdio code.Manuel Novoa III
2002-03-09Avoid forced -lpthread lnkage when threading is enabledEric Andersen
2002-03-05Remove sys/io.h include, since not everyone has itEric Andersen
2002-03-05Initial checkinMiles Bader
2002-03-05Re-add files which were mistakenly deleted during the big bits/ update.Miles Bader
2002-03-05Remove extraneous fileMiles Bader
2002-03-02Remove generated stuff, restore sh/sys/procfs.h from M. R. BrownEric Andersen
2002-03-01Move syscall.h generation to the top level MakefileEric Andersen
-Erik
2002-03-01Patch from Miles Bader to allow Large File support on the v850.Eric Andersen
2002-03-01Fix for some comments, from Miles BaderEric Andersen