minix/servers/fs/select.c

17 lines
390 B
C
Raw Normal View History

/* Implement entry point to select system call.
*
* The entry points into this file are
* do_select: perform the SELECT system call
*/
#include "fs.h"
/*===========================================================================*
* do_select *
*===========================================================================*/
PUBLIC int do_select(void)
{
return OK;
}