* buffer of the stdin task, it adds \p STDIN_FILENO to the read fd set
* of \a s.
*/
-void stdin_pre_select(struct sched *s, struct task *t)
+static void stdin_pre_select(struct sched *s, struct task *t)
{
struct stdin_task *sit = t->private_data;
t->ret = 1;
* appeears to be readable, data is read from stdin into the buffer of the
* stdin task.
*/
-void stdin_post_select(struct sched *s, struct task *t)
+static void stdin_post_select(struct sched *s, struct task *t)
{
struct stdin_task *sit = t->private_data;
ssize_t ret;
int eof;
};
-void stdin_pre_select(struct sched *s, struct task *t);
-void stdin_post_select(struct sched *s, struct task *t);
void stdin_set_defaults(struct stdin_task *sit);