minix/servers/fs/select.c
Ben Gras e44e9ad261 small compile fixes; initial select() stubs; release.sh script doesn't
need /tmp any more since 16MB root device; increase to 3.0.5 to make new
CD with working FXP driver. (not tagged 3.0.5 yet as at driver bios-copy
workaround hasn't been done.)
2005-06-06 11:40:32 +00:00

17 lines
390 B
C

/* 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;
}