* This function is always successful. If there is data available in the input
* buffer, it adds \p STDOUT_FILENO to the write fd set of \a s.
*/
-void stdout_pre_select(struct sched *s, struct task *t)
+static void stdout_pre_select(struct sched *s, struct task *t)
{
struct stdout_task *sot = t->private_data;
* appeears to be writable, the data loaded in the input buffer is written to
* stdout.
*/
-void stdout_post_select(struct sched *s, struct task *t)
+static void stdout_post_select(struct sched *s, struct task *t)
{
struct stdout_task *sot = t->private_data;
ssize_t ret;
int check_fd;
};
-void stdout_pre_select(struct sched *s, struct task *t);
-void stdout_post_select(struct sched *s, struct task *t);
void stdout_set_defaults(struct stdout_task *sot);