aboutsummaryrefslogtreecommitdiff
path: root/toys/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/df.c')
-rw-r--r--toys/df.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/toys/df.c b/toys/df.c
new file mode 100644
index 00000000..05c4b6c4
--- /dev/null
+++ b/toys/df.c
@@ -0,0 +1,7 @@
+/* vi: set ts=4 : */
+#include "toys.h"
+
+int df_main(void)
+{
+ printf("toys.which->name=%s\n",toys.which->name);
+}