aboutsummaryrefslogtreecommitdiff
path: root/toys/df.c
diff options
context:
space:
mode:
authorlandley <landley@driftwood>2006-09-28 17:18:51 -0400
committerlandley <landley@driftwood>2006-09-28 17:18:51 -0400
commitc56215062c961402515daeef8330ed75cd94af29 (patch)
tree7d29fd9f966e8392c180ec7a918d52b5ffb6a299 /toys/df.c
parent13bab2f09e9189c2b1e83ae37a1134108f9479cf (diff)
downloadtoybox-c56215062c961402515daeef8330ed75cd94af29.tar.gz
Next snapshot. Tries to grab something out of lib in order to build, I have
an empty "blah.c" in there to make it happy but I'm not checking that in.
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);
+}