1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #1051 from mehlis/debian-build-fail

ccnl: don't include c files
This commit is contained in:
René Kijewski 2014-04-25 08:19:23 +02:00
commit 2063c4e85f

View File

@ -25,6 +25,10 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "ccnl-core.h"
#include "ccnl-platform.h"
#include "rtc.h"
@ -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;