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