summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
...
* Cleanup the toploevel makefile handing of shared libs. Add weak_aliasEric Andersen2001-06-122-11/+18
| | | | | | define, and set things up so nasty old coff toolchains can now compile things and should actually work again. -Erik
* Some socket cleanupsEric Andersen2001-06-122-37/+44
|
* Teach the ldso stuff to use the proper elf.h header file, not a local copy.Eric Andersen2001-06-042-220/+604
| | | | -Erik
* Cleanup some stupid warningsEric Andersen2001-05-311-11/+0
|
* Make selection of uClibc floating point support in printf, etc. seperateManuel Novoa III2001-05-281-11/+11
| | | | | from libm float function support. Also, move all Config files out of the main directory.
* Added definition of __THROWDavid Schleef2001-05-261-0/+13
|
* Add in message queue support, based on work from <tapu@371.net>.Eric Andersen2001-05-262-0/+77
| | | | This is required to compile util-linux
* Add in some more GNU compatible locale stuff. I only implement theEric Andersen2001-05-252-0/+643
| | | | C locale of course. util-linux needs this stuff to compile...
* added __GNUC_PREREQ() macroDavid Schleef2001-05-251-0/+14
|
* We need the definition of HUGE_VAL fpr some apps. Include it.Eric Andersen2001-05-251-0/+1
| | | | -Erik
* Cleanup the math.h header file. It was broken when enabling doublesEric Andersen2001-05-251-239/+218
| | | | | but disabling long doubles. -Erik
* Add poll.h header.Manuel Novoa III2001-05-221-0/+1
|
* Wrap getline() inside #ifdef __USE_GNUEric Andersen2001-05-211-0/+2
|
* Proper prototype for mtherr, although this should probably be made anManuel Novoa III2001-05-211-1/+1
| | | | internal/hidden function (and merror and internal/hidden variable).
* Bring powerpc back into line so it compiles again.Eric Andersen2001-05-111-0/+1
|
* A patch from Matthias Kilian <kili@outback.escape.de> to fix -DDEBUG_MALLOCEric Andersen2001-05-111-1/+1
| | | | | so that it works for realloc too. -Erik
* Fix broken resources.hEric Andersen2001-05-102-70/+101
|
* Seems a few apps need this one...Eric Andersen2001-05-101-0/+114
|
* uClibc now has a math library. muahahahaha!Eric Andersen2001-05-101-169/+627
| | | | -Erik
* Yipe. This was still pulling in kernel headers.Eric Andersen2001-05-091-2/+4
| | | | -Erik
* Add in libutil, based on Cory Visi's variant of Michael Shmulevich's libutilEric Andersen2001-05-082-0/+43
| | | | | | | | port. I have reworked the code quite a bit so that the stuff that is supposed to be in libc is in libc, and I added a bunch of missing stuff so the libutil interface matches that of glibc's libutil. The only caveat is that libutil/login.c is currently a stub. -Erik
* Fix comment for #endif to remove warnings.Manuel Novoa III2001-05-081-1/+1
|
* Be really sneaky and use GNU ld special stuff so that whenever folksEric Andersen2001-04-251-0/+11
| | | | | | use the unsafe gets, they will get a warning from the linker. muahahaha. This method will soon be applied to fork() w/o an mmu etc... -Erik
* Oops. I forgot the header fileEric Andersen2001-04-201-0/+74
| | | | -Erik
* Fix include/errno.h to not use kernel header, and instead use bits/errno.h.Eric Andersen2001-04-065-7/+10
| | | | | | | This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik
* Add some missing headers needed by ld.so-1.9.11.Manuel Novoa III2001-03-224-0/+352
|
* Add in random(), make rand use that under the hood. Fix theEric Andersen2001-03-221-2/+3
| | | | include file so folks know random is now there.
* Stub out localeconv. Please look over this to check it is correct....Eric Andersen2001-03-211-0/+49
| | | | | | | | I started trying to read the glibc code -- but that code is far too messy to be read. So I just wrote a silly C app against glibc, set the locale to POSIX, then called localeconv(). I wrote this version of localeconv.c so it returns the same stuff. -Erik
* Add in the sysvipc patch from Michael ShmulevichEric Andersen2001-03-191-0/+58
|
* Add a sneaky backwards compat hack from Michael ShmulevichEric Andersen2001-03-191-0/+1
|
* Since Erik apparently wants def/undef vs def 1/0...Manuel Novoa III2001-03-191-1/+1
|
* Fix up breakage resulting from flipping the sense of some defines. Change fromEric Andersen2001-03-192-4/+4
| | | | | | | | defining things to "0" in the disabled case to outright undefining them, lest code that does an "#ifdef FOO" get inadvertantly triggered. Remove now unneeded lines from Rules.mak which makes the command line smaller and avoids redundancy (since this stuff is now pulled in via features.h). -Erik
* Added Vladimir's ctype locale support. Make Config setting visible in ↵Manuel Novoa III2001-03-181-0/+3
| | | | features.h. Reworked build of shared lib as suggested by Magick <magick@dds.nl>.
* Part of the ctype locale support.Manuel Novoa III2001-03-182-3/+38
|
* Fix the header file for index, rindex and similarEric Andersen2001-03-151-4/+5
|
* Define h_errno to be errno for now.Manuel Novoa III2001-03-121-4/+6
|
* Add in wordexp support (mostly stubbed out for now) since the busyboxEric Andersen2001-03-081-0/+25
| | | | | shell, lash, is about to start using wordexp. -Erik
* Make alloca work using the compiler builtinEric Andersen2001-03-081-0/+6
| | | | -Erik
* Reworked the password stuff to be reentrant. Group stuff isEric Andersen2001-03-081-4/+24
| | | | | still needing to be reworked. -Erik
* Added __strtok_r function. Change strtok to a wrapper around __strtok_r andManuel Novoa III2001-03-011-0/+10
| | | | | add a weak alias of __strtok_r for strtok_r since optional. Also reduced code size.
* stdio mostly rewritten... passes lots of tests now.Manuel Novoa III2001-02-271-19/+34
| | | | printf now supports long double, plus some bug fixes.
* g++ compatible math defines.David McCullough2001-02-261-127/+127
|
* Added res_init and res_queryDavid McCullough2001-02-261-0/+4
|
* Add an SH port done by Jean-Yves Avenard of Hewlett-Packard - EmbeddedEric Andersen2001-02-213-47/+407
| | | | | and Personal Systems. Thanks! -Erik
* Lots of stdio cleanups. Several bug fixes, addition of a number of functionsManuel Novoa III2001-02-191-32/+38
| | | | | to supplement macros in stdio.h, change perror to use stdio package instead of "write". Also add back in weak stdio initialization for static lib case.
* And apparently some things include sys/time.h instead of time.h in uClibc...Manuel Novoa III2001-02-151-2/+1
|
* I guess we always need timespec...Manuel Novoa III2001-02-151-2/+0
|
* Comment out for now. Not used and was causing an error.Manuel Novoa III2001-02-151-1/+2
|
* Add missing header file.Manuel Novoa III2001-02-151-0/+33
|
* Handle definition of struct timespec.Manuel Novoa III2001-02-152-2/+11
|