summaryrefslogtreecommitdiff
path: root/cesar/cl/stub/src/brg_rx.c
blob: e48f1b06843cd5fdf56724542745fdd04e99bc85 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* Cesar project {{{
 *
 * Copyright (C) 2011 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    cl/stub/src/brg_rx.c
 * \brief   Stub the brg rx functions
 * \ingroup cl
 *
 */
#include "common/std.h"
#include "cl/cl.h"
#include "cl/brg_rx.h"

void
cl_brg_rx_add (cl_t *ctx, mac_t smac, uint tei) __attribute__((weak));

cl_brg_rx_t *
cl_brg_rx_get (cl_t *ctx) __attribute__((weak));

void
cl_brg_rx_release (cl_t *ctx) __attribute__((weak));

void
cl_brg_rx_add (cl_t *ctx, mac_t smac, uint tei)
{
}

cl_brg_rx_t *
cl_brg_rx_get (cl_t *ctx)
{
    return NULL;
}

void
cl_brg_rx_release (cl_t *ctx)
{
}