summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
AgeCommit message (Collapse)Author
1999-06-29first round of repairs on stdlibAaron Campbell
1999-05-28"SEE ALSO" -> SEE ALSO, missed these files beforeAaron Campbell
1999-05-27more missing .El macros filled inAaron Campbell
1999-05-27getopt(3) does not return -1 when encountering unrecognized optionsAaron Campbell
1999-05-25punctuationAaron Campbell
1999-05-23remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonAaron Campbell
is used instead; kwesterback@home.com
1999-05-16Cleanup xrefs under SEE ALSO. Specifically:Alex Feldman
- Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries.
1999-05-10correct some Xr's which referred to the wrong man page sectionsAaron Campbell
1999-03-23Clarify realloc return valueTodd C. Miller
1999-03-11fix more comma splices that involve misuse of conjunctive adverbsPaul Janzen
1999-02-27make function names the correct caseTheo de Raadt
1999-02-03wrong ret type for write define (millert@)David Leonard
1999-02-01malloc can't use write() if it fails very early, so use the unwrapped ↵David Leonard
syscall _thread_sys_write() if we are threaded
1998-12-07No need to cast to they type we already are. Also minor KNFTodd C. Miller
1998-12-07remove bogus divide, fixes pr #656Todd C. Miller
1998-11-22bad longTheo de Raadt
1998-11-20Add thread-safety to libc, so that libc_r will build (on i386 at least).David Leonard
All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO
1998-11-17add MLINK for malloc.conf.5 man page, also add FILES section to malloc.3; fries@Aaron Campbell
1998-11-10getenv() result is read-only, unless you're looking for trouble.Marc Espie
1998-08-28define hppa as an ieeeMichael Shalayeff
1998-08-15document the common misuse of reallocTheo de Raadt
1998-08-12Make code ANSI/ISO C conformant. Formerly undefined constructs were usedNiklas Hallqvist
making load/store architectures (like mips&alpha) fail whn compiled with gcc -O2.
1998-08-11Temporary fix for a GCC aliasing bug/misfeature that hits hereNiklas Hallqvist
1998-08-06Don't enumerate every arch in the #if since all OpenBSD platforms use the ↵Todd C. Miller
same values for malloc_pageshift and malloc_minsize except for sparc
1998-07-16change to lite2 getenv(); getenv(NULL) now returns NULLTheo de Raadt
1998-07-05add .Xr's for all the random functions in libcTodd C. Miller
1998-06-28Oh fun, mucking about with files used on all archs.Dale S. Rahn
This is one of many places in the source that have #if defined("list all architectures") Is there some possible way to eliminate, reduce these or at least have a file that describes all occurrances so that when a new port is done this could be addressed. like the recent hppa port, does it need to take a look at this????
1998-06-21Remove the advertising clause in my old license, it impedes free useTodd C. Miller
of the code as a large number of similar clauses makes it impossible to write an ad for a product using the code...
1998-06-15use Bx macro for BSD versionsMichael Shalayeff
1998-05-18readlink(path, buf, sizeof buf-1). Never forget that -1.Theo de Raadt
1998-05-05indent niceTheo de Raadt
1998-04-28use Xr more oftenTheo de Raadt
1998-04-25indent; dimaTheo de Raadt
1998-02-07More XPG4.2 --Todd C. Miller
setstate takes a const parameter don't ever spew to stderr, just return NULL
1998-02-06size_t n in initstate(); XPGTheo de Raadt
1998-02-02Don't override environ if realloc() fails. Pointed out byTodd C. Miller
Dave Bodenstab <imdave@mcs.net>
1998-01-02make mmap() return void *, add MAP_FAILEDTheo de Raadt
1997-08-23Change realloc(foo,0) to behave like malloc(0). Both now return a pointerPer Fogelstrom
to an object of size zero. This will allow testing on reallocs return value to determine if the operation was successful or not.
1997-08-22malloc_init() should try to not modify errnoTheo de Raadt
1997-08-20Move getsubopt(3) to stdlib like lite2 and XPG4.2 say...Todd C. Miller
Update man page from lite2 while I'm at it.
1997-08-18Install a64l/l64a man page. Also, tsearch.3 and friends were notTodd C. Miller
being installed either.
1997-08-17Man page for a64l(3) and l64a(3), based on a64l.3 from the MiNT docs 0.1.Todd C. Miller
Also make a64l(3) and l64a(3) deal reasonably with inapropriate input. The standard does not require this, but it does not disallow it either.
1997-07-17fix XrTheo de Raadt
1997-07-02Use MALLOC_EXTRA_SANITY consistently (EXTRA_SANITY was used in many places)Todd C. Miller
sizeof *pt -> sizeof *px (point to same type of struct but looked wrong).
1997-07-01Include <stdlib.h> for malloc() proto.Todd C. Miller
1997-06-22Make sure we don't get stuck in a loop when trying to clean up stdioThorsten Lockert
1997-06-20add ELOOP support; shigio@wafu.netgate.netTheo de Raadt
1997-06-20typecastoramaTheo de Raadt
1997-06-15First cut at documentinf tsearch(3) -- needs work.Todd C. Miller
1997-06-14Fix decl for tfind(3)Todd C. Miller