stdin.[ch]: Make two functions static.
authorAndre Noll <maan@systemlinux.org>
Sun, 23 Sep 2007 18:28:25 +0000 (20:28 +0200)
committerAndre Noll <maan@systemlinux.org>
Sun, 23 Sep 2007 18:28:25 +0000 (20:28 +0200)
stdin.c
stdin.h

diff --git a/stdin.c b/stdin.c
index bb922dd168f645ebf61b17c11726e705d2b8c6e8..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.
  */
  * 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;
 {
        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.
  */
  * 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;
 {
        struct stdin_task *sit = t->private_data;
        ssize_t ret;
diff --git a/stdin.h b/stdin.h
index e1295927b14ae9988be21b673e940147e0255307..6931f330f440ca9005fadbbc93e11178bd9bee02 100644 (file)
--- a/stdin.h
+++ b/stdin.h
@@ -24,6 +24,4 @@ struct stdin_task {
        int eof;
 };
 
        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);
 void stdin_set_defaults(struct stdin_task *sit);