summaryrefslogtreecommitdiff
path: root/mcastseed/src/dgrambuf.c
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2016-07-20 14:21:24 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2016-07-20 14:21:24 +0200
commit492322211c6a432d000bc18fe57a659e910a05e5 (patch)
tree54a188389db3c09e53ff689d7bd628e31b778214 /mcastseed/src/dgrambuf.c
parent6d1adde7f4d51ec8d29d98920f2d22401a7a0e12 (diff)
downloadeficast-492322211c6a432d000bc18fe57a659e910a05e5.tar.gz
eficast-492322211c6a432d000bc18fe57a659e910a05e5.tar.bz2
eficast-492322211c6a432d000bc18fe57a659e910a05e5.zip
Adjust autoconf/make config for using gnulib + use config.h
Diffstat (limited to 'mcastseed/src/dgrambuf.c')
-rw-r--r--mcastseed/src/dgrambuf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mcastseed/src/dgrambuf.c b/mcastseed/src/dgrambuf.c
index e4c5e09..4863bb7 100644
--- a/mcastseed/src/dgrambuf.c
+++ b/mcastseed/src/dgrambuf.c
@@ -4,9 +4,10 @@
* Copyright 2016 by Ludovic Pouzenc <ludovic@pouzenc.fr>
*/
#define _GNU_SOURCE /* See feature_test_macros(7) */
-
#include "dgrambuf.h"
+#include "config.h"
+
#include <sys/socket.h> /* recvmmsg() _GNU_SOURCE */
#include <stdlib.h> /* calloc(), free(), qsort() */
#include <stdio.h> /* perror() */
@@ -17,6 +18,7 @@
#include <signal.h> /* sigaction() */
#include <unistd.h> /* alarm() */
#include <limits.h> /* SSIZE_MAX */
+#include "gl_rbtree_oset.h" /* Red-Black Tree Ordered Set, gnulib-tool --import rbtree-oset */
struct uint_pair {
unsigned int index;