From 14fa993204e676b5e6ec21c6d82fea3d7a9a2de1 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Thu, 20 Dec 2007 20:28:34 +0000 Subject: [PATCH] Define an empty rtimer_arch_now() macro to keep compiler happy. --- cpu/6502/sys/rtimer-arch.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpu/6502/sys/rtimer-arch.h b/cpu/6502/sys/rtimer-arch.h index 95d49abef..c66e8ba77 100644 --- a/cpu/6502/sys/rtimer-arch.h +++ b/cpu/6502/sys/rtimer-arch.h @@ -28,12 +28,13 @@ * * This file is part of the Contiki operating system. * - * $Id: rtimer-arch.h,v 1.1 2007/12/15 00:14:19 oliverschmidt Exp $ + * $Id: rtimer-arch.h,v 1.2 2007/12/20 20:28:34 oliverschmidt Exp $ */ #ifndef __RTIMER_ARCH_H__ #define __RTIMER_ARCH_H__ #define RTIMER_ARCH_SECOND 0 +#define rtimer_arch_now() (0) #endif /* __RTIMER_ARCH_H__ */