| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-09-01 | stty & gtty were around since v1 | sevan | |
| https://www.bell-labs.com/usr/dmr/www/man21.pdf https://www.bell-labs.com/usr/dmr/www/man22.pdf | |||
| 2017-07-03 | Remove workaround for ancient HTML generation code. | wiz | |
| 2016-01-26 | PR/50711: David Binderman: Fix memory leak on error | christos | |
| 2015-08-11 | SEE ALSO re_format(7). | dholland | |
| 2013-02-07 | Don't provide 2 versions of __compat_regerror() (the other one comes | christos | |
| from 4.3/regex.c via symbol renaming). Anyway this one did nada, so no great loss :-) | |||
| 2012-03-21 | These directories don't handle WARNS=5 | matt | |
| 2010-03-22 | Use .In instead of .Ar Pa for headers. | joerg | |
| 2010-03-22 | convert -idirafter to -isystem, as recommended by cgd in PR 11843. | mrg | |
| most of the list in that PR were already done. | |||
| 2009-02-14 | Convert more MACHINE tests to MACHINE_ARCH | abs | |
| 2008-09-08 | Mention the word "regexp" and the fact that this inteface is obsolete | apb | |
| 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-16 | Fix MKDEBUGLIB build. | freza | |
| 2006-04-08 | make sure p is initialized. | christos | |
| 2006-04-08 | remove bogus declaration. | christos | |
| 2005-07-06 | Move 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-19 | getpw*_r() may return 0 and set pwd==NULL | lukem | |
| 2005-04-01 | Use getpwuid_r, KNF. From John Nemeth, many thanks. | christos | |
| 2004-04-18 | Append to AFLAGS rather than setting AINC. | lukem | |
| 2003-10-21 | Don't use NULL to compare against an int. | fvdl | |
| 2003-08-07 | Move UCB-licensed code from 4-clause to 3-clause licence. | agc | |
| Patches provided by Joel Baker in PR 22280, verified by myself. | |||
| 2003-07-26 | netbsd.org->NetBSD.org | salo | |
| 2003-06-27 | End sentence with a dot. | wiz | |
| 2003-05-14 | setup -> set up. | wiz | |
| 2003-04-16 | Use | wiz | |
| .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-11 | Fix signed/unsigned comparison warnings, and shadow warnings. | thorpej | |
| 2002-10-01 | New sentence, new line. From Robert Elz. | wiz | |
| 2002-08-19 | Use ${NETBSDSRCDIR}/some/path instead of ${.CURDIR}/../../some/path (etc). | lukem | |
| (Reduces make output by ~ 20%) | |||
| 2002-08-08 | Refer to rcmd(3) instead of the non-existing krcmd(3). | soren | |
| PR lib/12562 by Klaus Klein. | |||
| 2002-02-07 | generate & symbolically | ross | |
| 2002-02-07 | Generate <>& symbolically. | ross | |
| 2002-01-15 | Sort SEE ALSO. | wiz | |
| 2002-01-15 | Drop an unnecessary .Pp. | wiz | |
| 2002-01-15 | Punctuation nit, sort SEE ALSO. | wiz | |
| 2002-01-15 | Punctuation nit. | wiz | |
| 2002-01-15 | Drop a trailing empty line. | wiz | |
| 2001-11-05 | WARNS=2 fixes | lukem | |
| 2000-09-14 | check LIBC_SCCS | msaitoh | |
| 2000-07-11 | Correct ctype(3) usage. | itohy | |
| Passing "char" value is wrong. Use "unsigned char" instead. | |||
| 2000-07-05 | remove extra period in SEE ALL section | msaitoh | |
| 2000-06-14 | sweep of my licenses (userland files w/o only my copyright) for | cgd | |
| consistency. (no functional changes) | |||
| 2000-06-14 | fix up NetBSD RCS Ids to match the standard, and the leading comment as | cgd | |
| to match as well. No functional changes. | |||
| 2000-02-19 | Build a PIC version of this -- but not yet a shlib, due to some obscure lossage | mycroft | |
| -- so that it can be linked into another shlib as needed. | |||
| 1999-09-20 | back 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 file | lukem | |
| 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-16 | sort includes | lukem | |
| 1999-08-22 | Add missing regerror() prototype. | kleink | |
| 1999-08-22 | G/C the manual pages for getpw(3), vlimit(3) and vtimes(3). Although stated | kleink | |
| 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-12 | Undo last commit. As pointed out by John Darrow on "regex.c" wasn't listed | tron | |
| twice in "SRCS", it were "regex.c" and "rexec.c". | |||
| 1999-08-11 | why have regex.c twice in SRCS ? | lukem | |
| 1999-07-02 | More trailing white space. | simonb | |
| 1999-05-09 | LP64 fixes. *sigh* | mycroft | |
