aboutsummaryrefslogtreecommitdiff
path: root/strbuf.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-01-22 14:58:07 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-01-22 14:58:07 +0100
commitb0def51bf3ad5c176e05e9e93fb5b303c9b0d6ee (patch)
tree2c1658de6ef4055395a565fce62aa583d297b85b /strbuf.c
parentMakefile now places .o files in subdir. (diff)
downloadcalp-b0def51bf3ad5c176e05e9e93fb5b303c9b0d6ee.tar.gz
calp-b0def51bf3ad5c176e05e9e93fb5b303c9b0d6ee.tar.xz
Clean up a number of comments, and remove TODO's.
Diffstat (limited to 'strbuf.c')
-rw-r--r--strbuf.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/strbuf.c b/strbuf.c
index b37bb77a..4490ed4a 100644
--- a/strbuf.c
+++ b/strbuf.c
@@ -23,9 +23,6 @@ int CONSTRUCTOR_DECL(strbuf, size_t len) {
return 0;
}
-/*
- * TODO check if this is the problem.
- */
int strbuf_realloc(strbuf* str, size_t len) {
#ifdef SAFE_STR
if (str->mem == NULL || str->alloc == 0) {