diff toys.h @ 118:93da7cc220e6

Add sleep.
author Rob Landley <rob@landley.net>
date Thu, 17 May 2007 02:38:27 -0400
parents ce6956dfc0cf
children c4a3781ecbab
line wrap: on
line diff
--- a/toys.h	Thu May 17 02:38:17 2007 -0400
+++ b/toys.h	Thu May 17 02:38:27 2007 -0400
@@ -50,7 +50,7 @@
 extern struct toy_context {
 	struct toy_list *which;  // Which entry in toy_list is this one?
 	int exitval;             // Value error_exit feeds to exit()
-	char **argv;             // Command line arguments
+	char **argv;             // Original command line arguments
 	unsigned optflags;       // Command line option flags from get_optflags()
 	char **optargs;          // Arguments left over from get_optflags()
 } toys;