mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
libregexp: allow up to 128 character classes in one regexp
This commit is contained in:
parent
6eaa52d3f7
commit
4cd06ff66c
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
#ifndef _REGEXP9_H_
|
||||
#define _REGEXP9_H_ 1
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef AUTOLIB
|
||||
|
@ -61,7 +61,7 @@ struct Reinst{
|
|||
*/
|
||||
struct Reprog{
|
||||
Reinst *startinst; /* start pc */
|
||||
Reclass class[16]; /* .data */
|
||||
Reclass class[128]; /* .data */
|
||||
Reinst firstinst[5]; /* .text */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue