REQUIREMENTS: Kill an incomplete sentence, add git.
[paraslash.git] / stdin.c
diff --git a/stdin.c b/stdin.c
index 83ff48f50acf38a95c2f0b021a04edf48675c73c..4b7a962d259658184d2ac12ff66885d9a4e0635f 100644 (file)
--- a/stdin.c
+++ b/stdin.c
@@ -28,7 +28,7 @@
  * 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;
@@ -56,7 +56,7 @@ static void stdin_default_event_handler(struct task *t)
  * 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;
@@ -79,12 +79,12 @@ void stdin_post_select(struct sched *s, struct task *t)
 }
 
 /**
- * initialize a stdin task structure with default values
+ * Initialize a stdin task structure with default values.
  *
- * \param sit the stdin task structure
+ * \param sit The stdin task structure.
  *
  * This fills in the pre/post select function poinzters of the task structure
- * given by \a sot. It also sets up a default error handler which unregisters
+ * given by \a sit. It also sets up a default error handler which unregisters
  * the task. Moreover, \a loaded and \a eof are set to zero and \a bufsize is
  * initialized to 16 KB (but no buffer is allocated).
  */