diff options
author | Rob Landley <rob@landley.net> | 2007-05-17 02:38:27 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-05-17 02:38:27 -0400 |
commit | f2f98fa34e9c00c2b5366fb6a9a912cf94f9a157 (patch) | |
tree | c6c558c472f3be6c7f907f45e1f7c1530b132fa9 /toys.h | |
parent | 8e0520c3ac41b37ccd8937ce3a81f9ab04e2a189 (diff) | |
download | toybox-f2f98fa34e9c00c2b5366fb6a9a912cf94f9a157.tar.gz |
Add sleep.
Diffstat (limited to 'toys.h')
-rw-r--r-- | toys.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ void toy_exec(char *argv[]); 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; |