Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / tests / doubleswitch.c
CommitLineData
91eba41f
C
1void zfLnxRecvEth(zdev_t* dev, zbuf_t* buf, u16_t port)
2{
3#ifdef ZM_AVOID_UDP_LARGE_PACKET_FAIL
4 zbuf_t *new_buf;
5
6 foo();
7
8 switch(netif_rx(new_buf))
9#else
10
11 switch(netif_rx(buf))
12#endif
13 {
14 case NET_RX_BAD:
15 break;
16 }
17
18 return;
19}