summaryrefslogtreecommitdiff
path: root/cesar/cl/stub/src/mcast.c
blob: a3a4e99b05205f9b501404ff75a160c5bf7dcc20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Cesar project {{{
 *
 * Copyright (C) 2011 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    cl/stub/src/mcast.c
 * \brief   Stub the mcast functions
 * \ingroup cl
 *
 */
#include "common/std.h"
#include "cl/cl.h"
#include "cl/mcast.h"

igmp_groups_t*
cl_get_igmp_groups (cl_t *ctx) __attribute__((weak));

igmp_groups_t*
cl_get_igmp_groups (cl_t *ctx)
{
    dbg_assert (ctx);
    return NULL;
};