aboutsummaryrefslogtreecommitdiff
path: root/buf.h
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-03-30 23:53:14 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-03-30 23:53:14 -0400
commitd87022dad4efdf4395c15b4de63a894b358bcf7c (patch)
tree243ca1aa40db79b06a69f86897846541bf5f2f9e /buf.h
parent7b09cacea5008106a3f0964d47fdf54bf4ff5a58 (diff)
properly included stdlib in buf.h header (size_t)
Diffstat (limited to 'buf.h')
-rw-r--r--buf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/buf.h b/buf.h
index a796c92..d142148 100644
--- a/buf.h
+++ b/buf.h
@@ -1,5 +1,6 @@
#ifndef _BUF_INCLUDE
#define _BUF_INCLUDE
+#include <stdlib.h>
typedef struct buf_node buf_node;
typedef struct buf buf;