1/**
2 * @brief
3 *  debug.h
4 */
5
6/*
7 * Copyright (c) 2017, ETH Zurich.
8 * All rights reserved.
9 *
10 * This file is distributed under the terms in the attached LICENSE file.
11 * If you do not find this file, copies can be found by writing to:
12 * ETH Zurich D-INFK, Universitaetsstrasse 6, CH-8092 Zurich. Attn: Systems Group.
13 */
14
15#ifndef LIB_NET_DEBUG_H_
16#define LIB_NET_DEBUG_H_
17
18#define NETDEBUG(x, ...)
19
20//#define NETDEBUG(fmt, ...) debug_printf(NETDEBUG_SUBSYSTEM ": %s : " fmt, __FUNCTION__, ##__VA_ARGS__)
21
22#endif /* LIB_NET_DEBUG_H_ */
23