diff options
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index 0310b02ed..6f391b881 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -57,7 +57,6 @@ | |||
57 | * | 57 | * |
58 | * TODOs: | 58 | * TODOs: |
59 | * grep for "TODO" and fix (some of them are easy) | 59 | * grep for "TODO" and fix (some of them are easy) |
60 | * builtins: ulimit | ||
61 | * special variables (done: PWD) | 60 | * special variables (done: PWD) |
62 | * follow IFS rules more precisely, including update semantics | 61 | * follow IFS rules more precisely, including update semantics |
63 | * export builtin should be special, its arguments are assignments | 62 | * export builtin should be special, its arguments are assignments |
@@ -87,6 +86,7 @@ | |||
87 | 86 | ||
88 | #include "shell_common.h" | 87 | #include "shell_common.h" |
89 | #include "builtin_read.h" | 88 | #include "builtin_read.h" |
89 | #include "builtin_ulimit.h" | ||
90 | #include "math.h" | 90 | #include "math.h" |
91 | #include "match.h" | 91 | #include "match.h" |
92 | #if ENABLE_HUSH_RANDOM_SUPPORT | 92 | #if ENABLE_HUSH_RANDOM_SUPPORT |
@@ -671,7 +671,7 @@ static const struct built_in_command bltins1[] = { | |||
671 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), | 671 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
672 | BLTIN("trap" , builtin_trap , "Trap signals"), | 672 | BLTIN("trap" , builtin_trap , "Trap signals"), |
673 | BLTIN("type" , builtin_type , "Write a description of command type"), | 673 | BLTIN("type" , builtin_type , "Write a description of command type"), |
674 | // BLTIN("ulimit" , builtin_ulimit , "Control resource limits"), | 674 | BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"), |
675 | BLTIN("umask" , builtin_umask , "Set file creation mask"), | 675 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
676 | BLTIN("unset" , builtin_unset , "Unset variables"), | 676 | BLTIN("unset" , builtin_unset , "Unset variables"), |
677 | BLTIN("wait" , builtin_wait , "Wait for process"), | 677 | BLTIN("wait" , builtin_wait , "Wait for process"), |