summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* signed/unsigned mixup. KAME PR 469 by Olivier Courtay.itojun2003-03-071-2/+3
|
* .Xr typos;jmc2003-03-064-9/+9
|
* .Xr typos;jmc2003-03-066-16/+16
| | | | ok deraadt@
* .Xr's;jmc2003-03-067-16/+16
| | | | | | typos in man page section ok deraadt@
* Fix a pasto. (There is no ULLONG_MIN, for hopefully obvious reasons)kjell2003-03-061-4/+2
| | | | ok millert
* date should be written formally: .Dd Month day, yeardavid2003-03-062-4/+4
| | | | ok henning@ jmc@
* missing #include in SYNOPSIS, found by Daniel Lucqhenning2003-03-041-1/+2
| | | | ok millert@
* strlcpy, check retval from sprintfitojun2003-03-043-11/+18
|
* s/strncpy/strlcpy/itojun2003-03-041-4/+4
|
* in the handler, block signals handlers as soon as possible; ok miod millertderaadt2003-03-031-3/+9
|
* Provide real ieee fp*() functions; from NetBSD.miod2003-03-015-48/+56
| | | | ok millert@
* typos;jmc2003-02-289-59/+58
| | | | reboot(2), sigaction(2): help and ok millert@
* Use int32_t, not long since this deals with 32bit quantities.millert2003-02-281-20/+20
| | | | Inspired by a change in NetBSD and reported by Jan Johansson.
* missed in the math man page cleanupjason2003-02-271-7/+11
|
* correctly check the return value of send(). fixes LOG_CONS from alwaysdanh2003-02-271-2/+2
| | | | | | logging to the console. ok millert@
* typos;jmc2003-02-278-22/+25
|
* typos;jmc2003-02-255-12/+13
| | | | intro(2): help deraadt@
* Fix bogus inet_net_pton() translation example.cedric2003-02-241-2/+2
| | | | ok henning@
* of ofderaadt2003-02-242-4/+4
|
* the thederaadt2003-02-242-4/+4
|
* need stdlib.h tooderaadt2003-02-241-1/+2
|
* one more: guid -> egidjmc2003-02-211-2/+2
| | | | thanks tedu@
* typos;jmc2003-02-2110-32/+30
|
* fix a variety of missing or wrong MLINKSderaadt2003-02-201-1/+2
|
* indent delay slotjason2003-02-181-2/+2
|
* intial -> initial;jmc2003-02-181-2/+2
| | | | | | | the great intial witch hunt, as prompted by tdeval@ os-aix-dso.c: ok henning@ ab.C: ok drahn@
* copyrights added;jmc2003-02-186-6/+168
| | | | these are all Sun Microsystems
* minor KNFmillert2003-02-171-4/+4
|
* teach people about strlcpy, not strcpyderaadt2003-02-161-2/+2
|
* put my copyrights on herederaadt2003-02-141-2/+52
|
* license clarifications; arthur_david_olson@nih.govmillert2003-02-148-8/+36
|
* re-stir if pid changes; markus & mederaadt2003-02-141-3/+5
|
* Obey calling convention and use the right opcode (fabss -> fabsd); Fabulous...jason2003-02-081-4/+2
| | | | (based on netbsd pr 20140)
* Don't write log message to console unless we are unable to connect tomillert2003-02-071-21/+7
| | | | syslogd. Noticed by marc@; OK by marc@ and deraadt@
* some more functions that are (only on OpenBSD) safe in signal handlers.deraadt2003-02-032-4/+33
| | | | not having access to these makes things really painful
* Replace emulated versions of setreuid() and setregid() with real syscalls.millert2003-01-316-187/+103
| | | | These are spec'd by POSIX as of 1003.1-2001; deraadt@ OK
* Align this char array accessed as double, for paranoia reasons.drahn2003-01-291-3/+4
|
* thread safer libc (note: safer, not safe)marc2003-01-2812-265/+348
| | | | | | | | | | Access to the global _res structure replaced by pointers to a per thread instance. If unthreaded the pointer is to the global structure. Also replaced a 64k stack array with malloc-ed memory so threaded aps (with a default 64k stack) have a chance at working. ok deraadt@
* kern.watchdog; ok mickey@markus2003-01-211-1/+25
|
* typos;jmc2003-01-211-3/+3
| | | | ok deraadt@
* Don't reconnect to logging socket if send() returns an error and errnomillert2003-01-201-12/+13
| | | | | | | | | == ENOBUFS, there is no point and it hurts chroot'ed processes. Don't return immediately from syslog_r() when the send(), we may have more work to do. deraadt@ OK
* remove libc_r mention in commentmarc2003-01-201-2/+2
|
* comment changed to look in libpthread, not libc_rmarc2003-01-201-1/+1
|
* programs that chroot must use LOG_NDELAY; deraadt@ OKmillert2003-01-191-1/+4
|
* inet6 fixes from jmc@prioris.mini.pw.edu.plderaadt2003-01-182-21/+13
|
* Waiter! I asked for a working vfork!miod2003-01-161-3/+3
|
* Alignment requirements are satisfied in ENTRY(), no need to add more here.miod2003-01-161-2/+1
|
* minbrk is exposed, gmon uses itmickey2003-01-151-6/+6
|
* Add sanity check to prevent int oflow for very large allocations.millert2003-01-141-3/+11
| | | | | Also fix a signed vs. unsigned issue while I am at it. Found by Jim Geovedi. OK deraadt@
* Move the rounds into separate functions on sparc64 so gcc's optimizermillert2003-01-082-22/+69
| | | | | | doesn't blow up. This is a hack but is better than compiling sha1.c with -O0 on sparc64. From NetBSD (mrg). deraadt@ OK