1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples/rpl_udp: reduce scope of globals in helper.c

This commit is contained in:
Joakim Gebart 2015-01-23 14:07:03 +01:00
parent ba6053e448
commit 47e0c85c2d

View File

@ -37,7 +37,7 @@
extern uint8_t ipv6_ext_hdr_len;
msg_t msg_q[RCV_BUFFER_SIZE];
static msg_t msg_q[RCV_BUFFER_SIZE];
void rpl_udp_set_id(int argc, char **argv)
{
@ -121,7 +121,7 @@ void *rpl_udp_monitor(void *arg)
return NULL;
}
transceiver_command_t tcmd;
static transceiver_command_t tcmd;
void rpl_udp_ignore(int argc, char **argv)
{