aboutsummaryrefslogtreecommitdiff
path: root/toys/tty.c
diff options
context:
space:
mode:
authorCharlie Shepherd <masterdriverz@gentoo.org>2007-11-23 20:49:27 +0000
committerCharlie Shepherd <masterdriverz@gentoo.org>2007-11-23 20:49:27 +0000
commit801aa5532f36514b1a73de034591c1e7ae324a05 (patch)
tree48de6b197a00e0548a0fd184864cd5e4efa2e66e /toys/tty.c
parentb938705155af45d3cc2cd6c8583e496795e79c0d (diff)
downloadtoybox-801aa5532f36514b1a73de034591c1e7ae324a05.tar.gz
Add tty applet
Diffstat (limited to 'toys/tty.c')
-rw-r--r--toys/tty.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/toys/tty.c b/toys/tty.c
new file mode 100644
index 00000000..c6eeac0a
--- /dev/null
+++ b/toys/tty.c
@@ -0,0 +1,13 @@
+#include "toys.h"
+
+int tty_main(void)
+{
+ char *name = ttyname(0);
+ if (!toys.optflags) {
+ if (name)
+ puts(name);
+ else
+ puts("Not a tty");
+ }
+ return !name;
+}