]> git.ipfire.org Git - thirdparty/bird.git/blobdiff - lib/buffer.h
Filter test: typo fix
[thirdparty/bird.git] / lib / buffer.h
index cf073e88f05c75dfe0e8a0bf5a42349935c3ccaa..2a53f2118b8882ff089bdcca7a67fad6574d4568 100644 (file)
@@ -1,3 +1,17 @@
+/*
+ *     BIRD Library -- Generic Buffer Structure
+ *
+ *     (c) 2013 Ondrej Zajicek <santiago@crfreenet.org>
+ *     (c) 2013 CZ.NIC z.s.p.o.
+ *
+ *     Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#ifndef _BIRD_BUFFER_H_
+#define _BIRD_BUFFER_H_
+
+#include "lib/resource.h"
+#include "sysdep/config.h"
 
 #define BUFFER(type)           struct { type *data; uint used, size; }
 
@@ -32,4 +46,4 @@
 
 #define BUFFER_FLUSH(v)                ({ (v).used = 0; })
 
-
+#endif /* _BIRD_BUFFER_H_ */