Skip to content

Commit

Permalink
ccnl: don't include c files
Browse files Browse the repository at this point in the history
this fixes a build problem on
debian and ubuntu based systems
  • Loading branch information
Christian Mehlis committed Apr 24, 2014
1 parent db3ad29 commit 13b38a4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sys/net/ccn_lite/ccnl-platform.c
Expand Up @@ -25,6 +25,10 @@

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include "ccnl-core.h"
#include "ccnl-platform.h"

#include "rtc.h"

Expand All @@ -34,9 +38,6 @@ timevaldelta(struct timeval *a, struct timeval *b)
return 1000000 * (a->tv_sec - b->tv_sec) + a->tv_usec - b->tv_usec;
}

#include "ccnl-ext-debug.c"
#include "ccnl-platform.h"

// ----------------------------------------------------------------------

struct ccnl_timer_s *eventqueue;
Expand Down

0 comments on commit 13b38a4

Please sign in to comment.