aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-05-26 14:40:30 -0700
committerMichael Forney <mforney@mforney.org>2019-05-26 14:40:30 -0700
commite8513bffac0af48dbf5bbd8035a80da7dee7b960 (patch)
tree3c7efeecce6df1b989c5cc723ed13d9263d4582d /doc
parent2a63765126e87e228d516c609494e25d4b1b5a7c (diff)
Update sbase notes, fix was applied upstream
Diffstat (limited to 'doc')
-rw-r--r--doc/software.md21
1 files changed, 1 insertions, 20 deletions
diff --git a/doc/software.md b/doc/software.md
index ddf4763..f6c1854 100644
--- a/doc/software.md
+++ b/doc/software.md
@@ -5,26 +5,7 @@ special procedures necessary.
## sbase
-Builds without issue with musl. On glibc, there are some errors due to
-the declaration of `strsep` conflicting with the system declaration in
-usage of `restrict` (see [#50]). This can be resolved with the diff below.
-
-```diff
-diff --git a/util.h b/util.h
-index 6c0aba9..9b6022c 100644
---- a/util.h
-+++ b/util.h
-@@ -57,6 +57,7 @@ size_t strlcpy(char *, const char *, size_t);
- size_t estrlcpy(char *, const char *, size_t);
-
- #undef strsep
-+#define strsep xstrsep
- char *strsep(char **, const char *);
-
- /* regex */
-```
-
-[#50]: https://todo.sr.ht/~mcf/cc-issues/50
+Builds without issue.
## mcpp