Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1362 → Rev 1361

/kernel/trunk/generic/src/syscall/syscall.c
49,15 → 49,14
 
static __native sys_io(int fd, const void * buf, size_t count) {
return count; /*Syscall deprecated*/
// TODO: buf sanity checks and a lot of other stuff ...
/*
 
size_t i;
for (i = 0; i < count; i++)
putchar(((char *) buf)[i]);
return count;*/
return count;
}
 
/** Dispatch system call */