summaryrefslogtreecommitdiff
path: root/lib/libcompat
AgeCommit message (Collapse)Author
2019-09-01stty & gtty were around since v1sevan
https://www.bell-labs.com/usr/dmr/www/man21.pdf https://www.bell-labs.com/usr/dmr/www/man22.pdf
2017-07-03Remove workaround for ancient HTML generation code.wiz
2016-01-26PR/50711: David Binderman: Fix memory leak on errorchristos
2015-08-11SEE ALSO re_format(7).dholland
2013-02-07Don't provide 2 versions of __compat_regerror() (the other one comeschristos
from 4.3/regex.c via symbol renaming). Anyway this one did nada, so no great loss :-)
2012-03-21These directories don't handle WARNS=5matt
2010-03-22Use .In instead of .Ar Pa for headers.joerg
2010-03-22convert -idirafter to -isystem, as recommended by cgd in PR 11843.mrg
most of the list in that PR were already done.
2009-02-14Convert more MACHINE tests to MACHINE_ARCHabs
2008-09-08Mention the word "regexp" and the fact that this inteface is obsoleteapb
in the NAME section. Previously, "man -k regex" printed the following two lines with no hint that you needed to do "man 3 regexp" to get to the man page associated with the first of the two lines: regcomp, regexec, regsub, regerror (3) - regular expression handlers regex, regcomp, regexec, regerror, regfree (3) - regular-expression library
2007-02-16Fix MKDEBUGLIB build.freza
2006-04-08make sure p is initialized.christos
2006-04-08remove bogus declaration.christos
2005-07-06Move insque/remque/lsearch/lfind from libcompat to libc,drochner
they are in XPG4-UNIX, XSH5.0, mentioned in SUSv3 etc. Minimal update of the manpages. (more needed)
2005-04-19getpw*_r() may return 0 and set pwd==NULLlukem
2005-04-01Use getpwuid_r, KNF. From John Nemeth, many thanks.christos
2004-04-18Append to AFLAGS rather than setting AINC.lukem
2003-10-21Don't use NULL to compare against an int.fvdl
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
Patches provided by Joel Baker in PR 22280, verified by myself.
2003-07-26netbsd.org->NetBSD.orgsalo
2003-06-27End sentence with a dot.wiz
2003-05-14setup -> set up.wiz
2003-04-16Usewiz
.In header.h instead of .Fd #include \*[Lt]header.h\*[Gt] Much easier to read and write, and supported by groff for ages. Okayed by ross.
2002-11-11Fix signed/unsigned comparison warnings, and shadow warnings.thorpej
2002-10-01New sentence, new line. From Robert Elz.wiz
2002-08-19Use ${NETBSDSRCDIR}/some/path instead of ${.CURDIR}/../../some/path (etc).lukem
(Reduces make output by ~ 20%)
2002-08-08Refer to rcmd(3) instead of the non-existing krcmd(3).soren
PR lib/12562 by Klaus Klein.
2002-02-07generate & symbolicallyross
2002-02-07Generate <>& symbolically.ross
2002-01-15Sort SEE ALSO.wiz
2002-01-15Drop an unnecessary .Pp.wiz
2002-01-15Punctuation nit, sort SEE ALSO.wiz
2002-01-15Punctuation nit.wiz
2002-01-15Drop a trailing empty line.wiz
2001-11-05WARNS=2 fixeslukem
2000-09-14check LIBC_SCCSmsaitoh
2000-07-11Correct ctype(3) usage.itohy
Passing "char" value is wrong. Use "unsigned char" instead.
2000-07-05remove extra period in SEE ALL sectionmsaitoh
2000-06-14sweep of my licenses (userland files w/o only my copyright) forcgd
consistency. (no functional changes)
2000-06-14fix up NetBSD RCS Ids to match the standard, and the leading comment ascgd
to match as well. No functional changes.
2000-02-19Build a PIC version of this -- but not yet a shlib, due to some obscure lossagemycroft
-- so that it can be linked into another shlib as needed.
1999-09-20back out the #ifdef _DIAGNOSTIC argument checks; too many people complained.lukem
_DIAGASSERT() is still retained.
1999-09-16* use _DIAGASSERT() to check pointer arguments against NULL and filelukem
descriptors against -1 (as appropriate). * add actual checks which to detect stuff that would trigger_DIAGASSERT(), and attempt to return a sane error condition. * knf some code * remove some `register' decls. the first two items result in the addition of code similar to the following in various functions: _DIAGASSERT(path != NULL) #ifdef _DIAGNOSTIC if (path == NULL) { errno = EFAULT; return (-1); } #endif
1999-09-16sort includeslukem
1999-08-22Add missing regerror() prototype.kleink
1999-08-22G/C the manual pages for getpw(3), vlimit(3) and vtimes(3). Although statedkleink
in the manuals, these interfaces don't actually exist in libcompat and it isn't likely that anyone needs nor actually implementents them; in fact, <sys/vlimit.h> was removed recently.
1999-08-12Undo last commit. As pointed out by John Darrow on "regex.c" wasn't listedtron
twice in "SRCS", it were "regex.c" and "rexec.c".
1999-08-11why have regex.c twice in SRCS ?lukem
1999-07-02More trailing white space.simonb
1999-05-09LP64 fixes. *sigh*mycroft