summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Revert $FreeBSD$ to $Id$peter1997-02-223-3/+3
|
* Typogrammatical error 'with' -> 'when'.danny1997-02-201-1/+1
| | | | This could be put into 2.2.
* Add forgotten man page link fts_set.3 -> fts.3wosch1997-02-161-1/+1
|
* Reviewed by: Bruce Evans <bde@freebsd.org>danny1997-02-151-0/+6
| | | | | Guard against possible buffer overrun in filename passed. Another candidate for 2.2.
* Allow commonly-used "insecure" as a valid keyword in /etc/ttys.davidn1997-02-151-0/+2
| | | | | This prevents keywords after "insecure" occurs being errnoeously parsed as comments.
* Moved definitions of PIC macros from SYS.h to DEFS.h so that SYS.hbde1997-02-143-41/+21
| | | | | | | | doesn't need to be included in files that have nothing to do with syscalls. Added missing `.text' to START_ENTRY so that ENTRY() works when invoked in the data section.
* lite2 remame: vfc_index --> vfc_typenumadam1997-02-121-1/+1
|
* Update to reflect new Lite2 mount.h and friends.mpp1997-02-101-50/+53
|
* Update to reflect new Lite2 mount.h.mpp1997-02-102-6/+16
|
* Move _PathLocale to data-only file, so setrunelocale() not pick upache1997-02-092-2/+2
| | | | | | whole setlocale.c module now. Should go into 2.2
* Fix PR2579: potential security hole in rcmd.cimp1997-02-091-2/+2
| | | | Submitted by: Julian Assange
* Do Andrey's homework :) before merging this into 2.2:joerg1997-02-082-1/+6
| | | | | . add idempotency #ifdef . avoid sloppy common-style external declaration.
* Include "setlocale.h" for _PathLocale like other parts already didache1997-02-071-3/+2
| | | | Should go in 2.2
* Comment out PATH_LOCALE referenceache1997-02-062-2/+2
| | | | Should go into 2.2
* Use symbolic constants instead of hardcoded digitsache1997-02-064-32/+51
| | | | | | | | Add range check for setrunelocale since it can be called directly. Remove _startup_setlocale compatibility function Should go into 2.2
* Fix yet another setlocale() bug.pst1997-02-061-1/+1
| | | | Submitted by: Wojtek Pilorz <wpilorz@celebris.bdk.lublin.pl>
* Submitted by: John Birrelljulian1997-02-052-6/+4
| | | | uthreads update from the author.
* Add XXX comment describing potential memset non-portable issueache1997-02-051-0/+3
| | | | Nitpicked-by: joerg
* Update the comment why range checking is not neededache1997-02-051-1/+1
| | | | Should go in 2.2
* Update the comment why range checking not neededache1997-02-053-4/+4
| | | | | | | Fix setrunelocale fail if called directly without prior setlocale call Should go in 2.2
* Killed getenv of PATH_LOCALE per Andrey's suggestion. It was intendeddg1997-02-051-11/+2
| | | | | for debugging locale stuff, but was rarely if ever used...and of course just bit a big chunk out of our collective hind-ends.
* Add yet one comment saying that range checking already doneache1997-02-031-0/+1
| | | | to stop people "fixing" it by snprintf
* Don't use hardcoded *roff font change requests.mpp1997-01-312-3/+5
|
* Don't use hardcoded *roff font change requests. Do itmpp1997-01-317-18/+56
| | | | via mdoc macros instead.
* Very minor mdoc cleanup.mpp1997-01-3119-36/+36
|
* Update to reflect current include files.mpp1997-01-301-3/+12
|
* Update to reflect current include files.mpp1997-01-305-32/+41
|
* Dont' mlink getgrent.3 to setgrfile.3, since there is nompp1997-01-301-1/+1
| | | | setgrfile() function.
* Update to reflect current include files.mpp1997-01-307-47/+172
|
* Update to reflect current include files.mpp1997-01-301-2/+2
|
* Correct "Chflags() will fail it:" to read "Chflags() will fail if:".jmacd1997-01-301-1/+1
|
* Update to reflect the current mount.h.mpp1997-01-291-18/+42
|
* I was porting something from sysV world and found our cross referencesobrien1997-01-272-0/+2
| | | | | not quite as good as I would expect. So I'm introducing mknod to mkfifo, and vice-versa.
* Document a couple of additional errno's.mpp1997-01-261-1/+7
| | | | | Submitted by: Steinar Haug and Heiko W. Rupp Obtained from: NetBSD-bugs & FreeBSD-current mailing lists
* Sort cross references.wosch1997-01-2080-143/+144
|
* Sort cross references.wosch1997-01-205-11/+11
|
* Sweep through the tree fixing mmap() usage:alex1997-01-162-3/+3
| | | | | | | | | | | | - Use MAP_FAILED instead of the constant -1 to indicate failure (required by POSIX). - Removed flag arguments of '0' (required by POSIX). - Fixed code which expected an error return of 0. - Fixed code which thought any address with the high bit set was an error. - Check for failure where no checks were present. Discussed with: bde
* Use collate for national [a-z]-like rangesache1997-01-161-8/+13
| | | | Should go in 2.2
* The following patch to lib/libc/stdio implements positional arguments injkh1997-01-142-22/+414
| | | | | | | | | a manner consistent with other implementations. Its done in a way that adds only a tiny amount of overhead when positional arguments are not used. I also have a test program to go with this, but don't know where it belongs in the tree. Submitted-By: Bill Fenner <fenner@FreeBSD.ORG>
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-14317-397/+397
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* When attempting to load a `lastditch' timezone (e.g., because the loadwollman1997-01-131-7/+8
| | | | | | | | | of the user's timezone failed), don't bail if the specified timezone doesn't have an offset; in this case it isn't going to. (Perhaps it would be better to change the caller to always supply one, but this is quick and clean and fixes the bug in the easiest possible way.) Should be in 2.2. Fixes (properly) PR#1740.
* Add missing RETURN VALUES/ERRORS sections.mpp1997-01-126-13/+69
|
* Rename the DIAGNOSTICS sections in several man pagesmpp1997-01-126-7/+7
| | | | to RETURN VALUES like they should be.
* Remove the EINVAL error from the ERRORS sections thatmpp1997-01-1127-70/+10
| | | | | say is means that a pathname had the high-order bit set, since this is no longer an error.
* Minor mdoc fixes in msync.2 and munmap.2.mpp1997-01-113-6/+31
| | | | | | Add RETURN VALUES and ERRORS sections to mincore. Closes PR# 1493.
* Forgot a .El macro.mpp1997-01-111-0/+1
|
* Add RETURN VALUES and ERRORS sections.mpp1997-01-111-3/+28
|
* Some mdoc cleanup. Also added a RETURN VALUES and ERRORSmpp1997-01-111-22/+45
| | | | | | section. Part of PR# 1493.
* Remove the comment about file names having tompp1997-01-111-2/+1
| | | | | | be 7 bit clean, since it isn't true anymore. Part of PR# 1493.
* Bring stat(2) into line with what is now actually inmpp1997-01-111-13/+34
| | | | | | stat.h. Also add a little blurb regarding st_mtime & friends clarifiying how they are defined in a non-_POSIX_SOURCE envorinment. Closes PR# 1089.
OpenPOWER on IntegriCloud