summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* repair prototypes; cky@pobox.comderaadt2000-02-251-5/+5
|
* repairderaadt2000-01-251-2/+2
|
* Use .Er macro when referring to errno error names.aaron2000-01-221-3/+3
|
* Clarify and mention that errno is set to ENOMEM on failure of malloc(),pjanzen2000-01-191-5/+11
| | | | calloc(), and realloc(). Idea from NetBSD.
* Max value returned is 2^31 - 1, regardless of the arch-dependent LONG_MAX.pjanzen2000-01-191-7/+1
|
* include thread_private.hd2000-01-061-1/+2
|
* Add missing MLINKsmillert1999-11-171-1/+2
|
* Tweaks; millert@aaron1999-11-101-8/+9
|
* calloc.c is backmillert1999-11-101-1/+1
|
* calloc() needs to be separate from malloc in case a user wants to havemillert1999-11-102-25/+54
| | | | their own malloc() implementation.
* Merge calloc(3) man page into malloc.3; as suggested by millert@aaron1999-11-093-90/+41
|
* Move calloc() into malloc.c and only zero out the area if malloc()millert1999-11-093-55/+26
| | | | | | didn't do so for us. By default, malloc() zeros out the space it allocates but the programmer cannot rely on this as it is implementation- specific (and configurable via /etc/malloc.conf)
* Formatting and grammar.aaron1999-09-271-2/+2
|
* use writev() where possiblederaadt1999-09-161-12/+29
|
* Supply examples and discuss limitations.pjanzen1999-09-142-7/+120
|
* use stronger language when pointing people at strtol()deraadt1999-09-131-1/+12
|
* typoespie1999-09-071-2/+2
|
* succesful -> successfulaaron1999-09-061-2/+2
|
* better english; deraadt@/millert@aaron1999-07-202-6/+6
|
* trash some old leftover macros and replace them with -mdoc macrosaaron1999-07-042-11/+6
|
* remove extra comma from .Dd arguments: "Month ##, ####" is the correct format,aaron1999-07-021-2/+2
| | | | not "Month, ##, ####"
* first round of repairs on stdlibaaron1999-06-2930-150/+182
|
* "SEE ALSO" -> SEE ALSO, missed these files beforeaaron1999-05-281-2/+2
|
* more missing .El macros filled inaaron1999-05-272-12/+14
|
* getopt(3) does not return -1 when encountering unrecognized optionsaaron1999-05-271-3/+2
|
* punctuationaaron1999-05-251-2/+2
|
* remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonaaron1999-05-235-10/+10
| | | | is used instead; kwesterback@home.com
* Cleanup xrefs under SEE ALSO. Specifically:alex1999-05-168-22/+22
| | | | | | | - Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries.
* correct some Xr's which referred to the wrong man page sectionsaaron1999-05-103-8/+7
|
* Clarify realloc return valuemillert1999-03-231-3/+4
|
* fix more comma splices that involve misuse of conjunctive adverbspjanzen1999-03-111-2/+2
|
* make function names the correct casederaadt1999-02-274-17/+17
|
* wrong ret type for write define (millert@)d1999-02-031-2/+2
|
* malloc can't use write() if it fails very early, so use the unwrapped ↵d1999-02-011-1/+10
| | | | syscall _thread_sys_write() if we are threaded
* No need to cast to they type we already are. Also minor KNFmillert1998-12-071-3/+6
|
* remove bogus divide, fixes pr #656millert1998-12-071-2/+2
|
* bad longderaadt1998-11-221-2/+2
|
* Add thread-safety to libc, so that libc_r will build (on i386 at least).d1998-11-206-15/+70
| | | | | | | | | | | | | 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
* add MLINK for malloc.conf.5 man page, also add FILES section to malloc.3; fries@aaron1998-11-172-2/+6
|
* getenv() result is read-only, unless you're looking for trouble.espie1998-11-101-1/+5
|
* define hppa as an ieeemickey1998-08-281-2/+2
|
* document the common misuse of reallocderaadt1998-08-151-2/+26
|
* Make code ANSI/ISO C conformant. Formerly undefined constructs were usedniklas1998-08-121-103/+119
| | | | | making load/store architectures (like mips&alpha) fail whn compiled with gcc -O2.
* Temporary fix for a GCC aliasing bug/misfeature that hits hereniklas1998-08-111-1/+5
|
* Don't enumerate every arch in the #if since all OpenBSD platforms use the ↵millert1998-08-061-8/+4
| | | | same values for malloc_pageshift and malloc_minsize except for sparc
* change to lite2 getenv(); getenv(NULL) now returns NULLderaadt1998-07-161-14/+21
|
* add .Xr's for all the random functions in libcmillert1998-07-053-3/+7
|
* Oh fun, mucking about with files used on all archs.rahnds1998-06-281-2/+2
| | | | | | | | | 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????
* Remove the advertising clause in my old license, it impedes free usemillert1998-06-212-10/+4
| | | | | of the code as a large number of similar clauses makes it impossible to write an ad for a product using the code...
* use Bx macro for BSD versionsmickey1998-06-152-4/+6
|