diff options
| author | Tyge Løvset <[email protected]> | 2022-09-16 11:46:33 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-09-16 11:46:33 +0200 |
| commit | 498679cde9565add37d685e16ea863db3d014a07 (patch) | |
| tree | 61d0ec5f64b42ee6bf17729eb282a6cdb1847b14 /src | |
| parent | d31f686e20c0f3731b1dc931f7f8e1d69c07ed4c (diff) | |
| download | STC-modified-498679cde9565add37d685e16ea863db3d014a07.tar.gz STC-modified-498679cde9565add37d685e16ea863db3d014a07.zip | |
Maintenance update.
Diffstat (limited to 'src')
| -rw-r--r-- | src/cregex.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/cregex.c b/src/cregex.c index 61e938d8..6b4e9f27 100644 --- a/src/cregex.c +++ b/src/cregex.c @@ -24,18 +24,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include <stdlib.h> -#include <stdint.h> -#include <stddef.h> -#include <stdbool.h> -#include <setjmp.h> -#include <string.h> -#include <ctype.h> -#include <stdio.h> #include <stc/cregex.h> #include <stc/utf8.h> #define i_header #include <stc/cstr.h> +#include <setjmp.h> +#include <ctype.h> typedef uint32_t Rune; /* Utf8 code point */ typedef int32_t Token; |
