From 9399718ede311770797ad1f23e15128dc6855751 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Tue, 29 May 2007 22:25:49 +0000 Subject: [PATCH] Cosmetic change... --- cpu/6502/clock.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cpu/6502/clock.c b/cpu/6502/clock.c index c8f47a0f6..77b88bd04 100644 --- a/cpu/6502/clock.c +++ b/cpu/6502/clock.c @@ -30,13 +30,14 @@ * * Author: Oliver Schmidt * - * $Id: clock.c,v 1.1 2007/05/29 21:56:22 oliverschmidt Exp $ + * $Id: clock.c,v 1.2 2007/05/29 22:25:49 oliverschmidt Exp $ */ #include #include "contiki.h" +/*-----------------------------------------------------------------------------------*/ clock_time_t clock_time(void) { @@ -49,7 +50,7 @@ clock_time(void) * needs to be defined at least as 2. * The value 2 works out especially nicely as it allows us to implement the * clock frequency devider below purely in (32 bit) integer arithmetic based - * on the educated guess of CLK_TCK being an even value. - */ + * on the educated guess of CLK_TCK being an even value. */ return clock() / (CLK_TCK / CLOCK_CONF_SECOND); } +/*-----------------------------------------------------------------------------------*/