Skip to content
Snippets Groups Projects
Commit fbca6f8a authored by Martine Lenders's avatar Martine Lenders
Browse files

Make include paths in destiny relative

 * When included by other modules the absolute paths of destiny
   lead to problems
parent de038ed3
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include "tcp.h" #include "tcp.h"
#include "udp.h" #include "udp.h"
#include "in.h" #include "in.h"
#include "sys/net/sixlowpan/sixlowip.h" #include "../sixlowpan/sixlowip.h"
/* /*
* Types * Types
......
...@@ -71,7 +71,7 @@ enum tcp_codes ...@@ -71,7 +71,7 @@ enum tcp_codes
#define TCP_STACK_SIZE 1024 #define TCP_STACK_SIZE 1024
#include "sys/net/sixlowpan/sixlowip.h" #include "../sixlowpan/sixlowip.h"
typedef struct __attribute__ ((packed)) tcp_mms_o_t typedef struct __attribute__ ((packed)) tcp_mms_o_t
{ {
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
#include "tcp_hc.h" #include "tcp_hc.h"
#include "socket.h" #include "socket.h"
#include "tcp.h" #include "tcp.h"
#include "sys/net/sixlowpan/sixlowip.h" #include "../sixlowpan/sixlowip.h"
#include "sys/net/net_help/net_help.h" #include "../net_help/net_help.h"
#ifdef TCP_HC #ifdef TCP_HC
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
#include "udp.h" #include "udp.h"
#include "msg.h" #include "msg.h"
#include "sys/net/sixlowpan/sixlowip.h" #include "../sixlowpan/sixlowip.h"
#include "sys/net/sixlowpan/sixlowpan.h" #include "../sixlowpan/sixlowpan.h"
#include "socket.h" #include "socket.h"
#include "in.h" #include "in.h"
#include "sys/net/net_help/net_help.h" #include "../net_help/net_help.h"
#include "sys/net/net_help/msg_help.h" #include "../net_help/msg_help.h"
uint16_t udp_csum(ipv6_hdr_t *ipv6_header, udp_hdr_t *udp_header) uint16_t udp_csum(ipv6_hdr_t *ipv6_header, udp_hdr_t *udp_header)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment