mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-10 06:06:00 +00:00
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__ */
|