summaryrefslogtreecommitdiffstats
path: root/lib/libc/regex/regexec.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Drop a const-bomb on regexec. It's probably not a good idea to remove amartijn2018-07-111-4/+3
| | | | | | const promise when processing it in the regex engine. Minor tweak and OK schwarze@
* Userland reallocarray() audit.doug2014-10-111-2/+3
| | | | | | | Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@
* silence some warnings by adding prototypes, casts, and headers astedu2013-04-171-3/+5
| | | | appropriate. in regex, stop using the struct hack for a fixed size array
* zap rcsidespie2005-08-051-8/+1
|
* remove useless comments, once used for header file generation and deleteotto2004-11-301-9/+1
| | | | parameter names from prototypes. ok millert@
* ansify and deregister; no change in obj code. ok millert@otto2004-10-171-8/+4
|
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
| | | | rescinded 22 July 1999. Proofed by myself and Theo.
* Remove dead code and variablestholo1997-04-301-3/+1
|
* - cast usages of *printf() to void since we don't check return valmillert1997-04-281-14/+22
| | | | | | - move an assert to be *before* a strcpy() where it can do some good. - integrate NetBSD fixes for 64-bit machines (NetBSD PR #3450, Ross Harvey) - add lite2 tags
* long -> int to fix 64bit issues. This breaks 16bit machines but since we don't have any 16bit ports...) The alternative is to use int32_t's but then this code will break when/if int > 32bits which is not so unlikely. Fixes NetBSD PR #3450 from Ross Harvey (but in a different way)millert1997-04-121-14/+14
|
* Remove dead codetholo1996-09-151-3/+1
| | | | | | Remove unused variables Silence some warnings lint(1) is your friend
* Fix RCS idstholo1996-08-191-9/+1
| | | | Make sure everything uses {SYS,}LIBC_SCCS properly
* Make a proper lvalue in INCtholo1996-03-251-1/+1
|
* initial import of NetBSD treederaadt1995-10-181-0/+187