summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-05-04 17:06:36 +0200
committerTyge Løvset <[email protected]>2022-05-04 17:06:36 +0200
commit6d7c466b5e45780075178c8a65634056fd937e51 (patch)
tree5346ea24cd6496b816a097a6b5ab2c4ac3b96af7 /examples
parent691681356bf19ba112e7d332c07c986089ac16e4 (diff)
downloadSTC-modified-6d7c466b5e45780075178c8a65634056fd937e51.tar.gz
STC-modified-6d7c466b5e45780075178c8a65634056fd937e51.zip
Missing includes because of change in cregex.h
Diffstat (limited to 'examples')
-rw-r--r--examples/regex2.c1
-rw-r--r--examples/regex_match.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/regex2.c b/examples/regex2.c
index 1a8ac31d..09eaecd3 100644
--- a/examples/regex2.c
+++ b/examples/regex2.c
@@ -1,4 +1,5 @@
#include <stc/cregex.h>
+#include <stc/csview.h>
#include <stc/cstr.h>
int main()
diff --git a/examples/regex_match.c b/examples/regex_match.c
index 899fc072..7f02f892 100644
--- a/examples/regex_match.c
+++ b/examples/regex_match.c
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stc/cregex.h>
#include <stc/crandom.h>
+#include <stc/csview.h>
#define i_val double
#include <time.h>