summaryrefslogtreecommitdiffstats
path: root/src/fastd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fastd.h')
-rw-r--r--src/fastd.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/fastd.h b/src/fastd.h
index 2a4e9ac..4ce5bb4 100644
--- a/src/fastd.h
+++ b/src/fastd.h
@@ -378,8 +378,6 @@ static inline size_t alignto(size_t l, size_t a) {
return ((l+a-1)/a)*a;
}
-#define FASTD_BUFFER_NULL ((fastd_buffer_t){})
-
static inline fastd_buffer_t fastd_buffer_alloc(const fastd_context_t *ctx, size_t len, size_t head_space, size_t tail_space) {
size_t base_len = head_space+len+tail_space;
void *ptr;