summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* mark up NULL w/ .Dv;jmc2005-04-141-2/+5
|
* make it crystal clear that errstr is NULL after successtedu2005-04-141-1/+4
|
* - our pages do not have a LIBRARY section;jmc2005-04-132-5/+5
| | | | | - attach rcs id - wording tweak
* Import w* functions so that I can send smaller diffs around.espie2005-04-1325-0/+1592
| | | | | | (Nothing activated yet, of course) okay deraadt@
* more snprintf return value sloppiness; ok ottoderaadt2005-04-111-3/+7
|
* Make __syscall prototypes more consistent. Use register_t as themillert2005-04-069-70/+34
| | | | | return value for system calls that return size_t or ssize_t and quad_t for those that return off_t.
* explain where type and class are defined; ok jmc@fgsch2005-04-051-1/+8
| | | | CVS ----------------------------------------------------------------------
* Document PT_[GS]ETXMMREGS.kettenis2005-04-041-7/+27
| | | | ok jmc@
* Xr readlink(1). ok jmc@otto2005-04-031-1/+2
|
* /bin/ksh is now in the builtin list; noticed by otto@millert2005-04-021-3/+4
|
* Add /bin/ksh to builtin list of OK shells.millert2005-04-021-2/+2
|
* hppa64 bits cloned form hppamickey2005-04-0133-0/+1694
|
* Fix typo in comment (_setjmp -> setjmp)hshoexer2005-04-011-2/+2
| | | | ok deraadt
* ansify. ok deraadt@ jaredy@otto2005-04-0138-692/+326
|
* MMAP(2) malloc, here we go again.tdeval2005-03-311-222/+591
|
* make sure the implementation matches the prototype..pat2005-03-3112-25/+25
| | | | | | char const * -> const char * ok otto@ deraadt@
* ansify + deregister. no binary change on i386. ok deraadt@ pat@ moritz@otto2005-03-308-64/+45
|
* ansipat2005-03-302-6/+4
| | | | ok otto moritz deraadt
* ansi + de-registerpat2005-03-3036-399/+172
| | | | ok otto deraadt
* Do not promise anything about the contents of resolved on failure.otto2005-03-301-4/+4
| | | | ok millert@
* strcasestr(3), a case-insensitive version of strstr(3). already in netbsdderaadt2005-03-303-17/+88
| | | | | | and freebsd, apparently written by torek, the man we never see anymore; submitted by jcs, but he is not around right now for the libc major crank so i sneak it in for him
* welcome libc35.0tedu2005-03-301-2/+2
|
* make the resolver stat resolv.conf and update if it changes.tedu2005-03-3010-34/+68
| | | | useful feedback and ok deraadt@
* Make realpath() thread-safe. New implementation does not use chdir(2) at all.brad2005-03-292-124/+143
| | | | | | From: FreeBSD by Constantin S. Svintsoff <kostik (at) iclub.nsu.ru> ok otto@ millert@
* add consttedu2005-03-281-4/+4
|
* add some const to ether_*. remove bonus prototypes this brought out.tedu2005-03-281-7/+7
| | | | ok deraadt@
* Document that historic BSD getopt(3) set optopt for each char, not justmillert2005-03-261-1/+14
| | | | on error.
* - use .Cm rather than .Nm for kernel optionsjmc2005-03-263-9/+9
| | | | - no space needed before full stops here
* acct, ktrace, and ptrace are only available if the kernel option is there.tedu2005-03-263-3/+15
| | | | say so.
* Change wording of APIWARNs to match arch-independent code.kettenis2005-03-252-4/+4
| | | | ok deraadt@
* Fix APIWARNs.kettenis2005-03-252-6/+6
| | | | ok deraadt@
* deregister (and deauto!). ok millert@ marco@otto2005-03-2523-91/+90
|
* ansify. ok deraadt@ moritz@otto2005-03-2543-665/+348
|
* Document that perror() treats an empty string like NULL.millert2005-03-241-8/+6
|
* ansify. ok deraadt@ millert@otto2005-03-239-43/+23
|
* ansify. ok deraadt@ moritz@otto2005-03-2328-548/+232
|
* deregister & ansify. ok deraad@ marco@ cloder@otto2005-03-232-16/+13
|
* add missing "of" to make this a real sentence.hshoexer2005-03-221-2/+2
| | | | ok henning mpf miod jmc
* chown(8): mention that this utility clears setuid/setgid bits by default;jmc2005-03-161-1/+7
| | | | | | | | | | from stuart henderson (pr #4149); chown(2)/chown(8): mention that sysctl variable fs.posix.setuid=0 overrides this behaviour; from millert and otto; ok deraadt@ otto@ millert@
* - correct include file (from david leonard, pr 4147)jmc2005-03-151-4/+4
| | | | | | | - r_number is type int, not long - lessen display indent to avoid line split ok deraadt@ millert@
* There is no need to call freeaddrinfo() in case of an error.claudio2005-03-121-1/+6
| | | | | getaddrinfo() does that already by itself. OK jmc@ beck@
* do not trash errno before using it, do not pass garbage args to getnameinfoderaadt2005-03-081-7/+10
| | | | ok henning andrushock@korovino.net
* fix typo in comment.moritz2005-03-081-2/+2
|
* handle snprintf() returning -1.moritz2005-03-082-3/+7
| | | | ok cloder@ henning@ hshoexer@
* more macro simplification;jmc2005-03-072-4/+4
|
* fd leak; andrushock@korovino.netderaadt2005-03-071-2/+4
|
* turn on APIWARN (prints link-time warnings for a few more functions). Thederaadt2005-03-071-2/+2
| | | | | | | | snapshots have been built with this for more than a year, but the releases have not. This is a fair bit more noisy in the ports tree, but it is good advice for people about how they can improve their code. Let us see where the annoyance vs worthwhile balance lands ok pvalchev
* correct snprintf return value checks, where the wrong ptrmoritz2005-03-061-6/+6
| | | | | | was used for calculating the buffer size. ok tedu@ cloder@
* Always remember to check snprintf return value for -1.cloder2005-03-061-2/+2
| | | | OK hshoexer, jsg, otto, krw
* Consistent #if protection of rcs ids; Francois Perradmillert2005-03-023-14/+10
|