10 lines
153 B
C
10 lines
153 B
C
|
#ifndef __UDP_H__
|
||
|
#define __UDP_H__
|
||
|
|
||
|
#include "contiki.h"
|
||
|
|
||
|
PROCESS_NAME(udp_process_sender);
|
||
|
PROCESS_NAME(udp_process_receiver);
|
||
|
|
||
|
#endif /* __UDP_H__ */
|