summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/merge.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2004-11-29More test cases involving back-references.otto1-2/+12
2004-11-28repair libkern support (again) and add rcsidsmickey7-13/+31
2004-11-22.{N,O}x fixes;jmc1-3/+2
2004-11-17remove NI_WITHSCOPEID (which is not standard)itojun2-24/+5
2004-11-03knf, no binary changehshoexer1-54/+65
ok krw@ millert@
2004-11-02ansi, indentation, etc.hshoexer1-17/+8
ok markus@ krw@ cloder@ millert@
2004-11-02kill spaceshshoexer1-3/+3
ok djm@
2004-10-26link to new functions manpages.espie1-3/+9
okay millert@
2004-10-26Add STANDARDS sectionmillert2-2/+42
2004-10-25basic regression test for some netdb functionsotto3-2/+189
2004-10-25Change return value of reentrant getproto* and getserv* to match themillert8-65/+105
IBM/Digital API.
2004-10-17Reentrant versions of getprotoent(3) and getservent(3). Adapted frommillert8-142/+346
changes in NetBSD by Christos. OK otto@
2004-10-17http proxy CONNECT support; ok beck@djm3-26/+111
2004-10-10use sig_atomic_t instead of intmickey1-2/+2
2004-10-01add some missing $, ok djm@ 'That looks fine to me' millert@jsg7-0/+14
2004-09-28wrong macros; from number six;jmc1-3/+3
2004-09-23typo from number six;jmc1-2/+2
2004-09-21Add HISTORY; from Jose Nazariomillert1-1/+7
2004-09-18regress for 'z' and 't' modifiersotto1-5/+23
2004-09-16Test ll's with positional args.otto1-4/+7
2004-09-16ansideraadt2-17/+13
2004-09-15unused variablesderaadt2-6/+3
2004-09-15remove return error variables.. set but never usedderaadt1-15/+11
2004-09-14do the char * to u_char * song and dance back and forth explicitly asderaadt2-8/+8
we match API's against each other, fun eh; millert ok
2004-09-07mips is now 64 bits so use a 64 bit configpefo1-6/+6
2004-08-26updates for openssl verify;jmc1-14/+18
2004-08-22mention strtonum(3)jaredy1-2/+7
ok millert jmc pedro
2004-08-13When running regex regress build a private copy with REDEBUG enabled.millert1-3/+4
That way we get the asserts enabled.
2004-08-13More nasty cases involving back references.otto1-1/+11
2004-08-11mips->mips64pefo1-0/+0
2004-08-11Back out to brk(2) version.tdeval1-554/+189
The mmap(2) code is cool and it has already uncovered some bugs in other code. But some issues remain on some archs, and we can't afford that for production. Don't worry, it will be back soon... I'll make sure of it...
2004-08-06cleanup mipspefo1-5/+1
2004-08-05- Remove the userland data limit check. It's mmap(2)'s job.tdeval1-37/+108
- When malloc_abort==0 (MALLOC_OPTIONS=a), don't abort in wrterror(). fine deraadt@
2004-08-04Missing check for NULL.tdeval1-2/+2
2004-08-04Unbreak malloc0test for use with mmap malloc which allocates objectsotto1-20/+7
in a non-contiguous manner. ok art@
2004-08-03Enable strtonum testotto1-2/+2
2004-08-03strtonum(3) regression tests.otto2-0/+69
2004-08-03It's not really possible to make strtonum() deal with unsigned longmillert2-35/+21
long values properly so don't bother trying. This greatly simplifies the code. tedu@ OK with input from otto@ and others.
2004-08-01After a long gestation period, here comes our custom version of malloc(3)tdeval1-181/+475
using mmap(2) instead of sbrk(2). To make a long story short, using mmap(2) in malloc(3) allows us to draw all the benefits from our mmap(2)'s randomization feature, closing the effort we did for returning memory blocks from random addresses. Tested for a long time by many, thanks to them. Go for it ! deraadt@
2004-07-29we no longer need to query ip6.int for reverse lookup. pvalchev okitojun1-8/+2
2004-07-23tweaks for openssl spkac;jmc1-31/+33
2004-07-22Split and modify tests to prevent infinite loops on platforms with precisekettenis2-34/+47
floating-point exceptions like amd64. ok deraadt@, david@
2004-07-20ansi; khalek@linuxgamers.netderaadt1-5/+1
2004-07-18fix memory leak; ok millert@ tdeval@jakob1-5/+6
2004-07-16Do not forget to test the lower bound if the upper bound > LLONG_MAX.otto1-1/+3
ok millert@
2004-07-16Avoid comparing unsigned and signed long longs since the signedmillert1-12/+18
one will get implicitly cast to unsigned. Fixes a bug with negative minval noticed by mjc@. Similar to a diff from miod@. OK miod@.
2004-07-15remove references to removed pages: clnp(4), esis(4), and iso(4);jmc1-2/+1
2004-07-15add -D for sodebug; ok deraadt, jmcmarkus2-5/+22
2004-07-13Remove iso_addr() and iso_ntoa() as part of the netiso removal.millert3-226/+3
From henning@, OK deraadt@
2004-07-13errno changes, lib major version bumps, and general flag daymarc3-4/+4
To build you must: cd /usr/src && make obj && make includes cd lib/libc && make depend && make && NOMAN=1 sudo make install cd /usr/src && make build