From 234cfd1dcf5173d557aded80bd8e71183f7fa3bb Mon Sep 17 00:00:00 2001 From: kieranm Date: Wed, 19 Nov 2008 13:38:10 +0000 Subject: [PATCH] Fix name of sys_now() function (was called sys_unix_now()) in unix port --- ports/unix/sys_arch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/unix/sys_arch.c b/ports/unix/sys_arch.c index abc5542..e8a4fee 100644 --- a/ports/unix/sys_arch.c +++ b/ports/unix/sys_arch.c @@ -492,7 +492,7 @@ sys_sem_free(struct sys_sem *sem) } /*-----------------------------------------------------------------------------------*/ unsigned long -sys_unix_now() +sys_now(void) { struct timeval tv; struct timezone tz;