From 8a665b53229ce8f563b88bb33aa1ab3db4c1c096 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Mon, 25 May 2015 22:53:09 +0200 Subject: finally managed to port some simple ncurses test applications! --- kernel/syscalls.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'kernel/syscalls.c') diff --git a/kernel/syscalls.c b/kernel/syscalls.c index 3a898fc..38cac63 100644 --- a/kernel/syscalls.c +++ b/kernel/syscalls.c @@ -15,6 +15,11 @@ int syscall_unhandled(int nr) panic(FOOLOS_MODULE_NAME,"unhandled syscall (generic handler)"); } +int syscall_gettimeofday(void *timeval, void *tz) +{ + return -1; +} + int syscall_lseek(int file,int ptr,int dir) { #ifdef LOG_SYSCALLS -- cgit v1.2.3