summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-09-16 11:46:33 +0200
committerTyge Løvset <[email protected]>2022-09-16 11:46:33 +0200
commit498679cde9565add37d685e16ea863db3d014a07 (patch)
tree61d0ec5f64b42ee6bf17729eb282a6cdb1847b14 /src
parentd31f686e20c0f3731b1dc931f7f8e1d69c07ed4c (diff)
downloadSTC-modified-498679cde9565add37d685e16ea863db3d014a07.tar.gz
STC-modified-498679cde9565add37d685e16ea863db3d014a07.zip
Maintenance update.
Diffstat (limited to 'src')
-rw-r--r--src/cregex.c10
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;