diff options
Diffstat (limited to 'shell/shell_common.c')
-rw-r--r-- | shell/shell_common.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/shell_common.c b/shell/shell_common.c index 3114ff3f7..840e03bff 100644 --- a/shell/shell_common.c +++ b/shell/shell_common.c | |||
@@ -330,6 +330,13 @@ static const char ulimit_opt_string[] = "-HSa" | |||
330 | #endif | 330 | #endif |
331 | ; | 331 | ; |
332 | 332 | ||
333 | #if ENABLE_PLATFORM_MINGW32 | ||
334 | int FAST_FUNC | ||
335 | shell_builtin_ulimit(char **argv) | ||
336 | { | ||
337 | return 1; | ||
338 | } | ||
339 | #else | ||
333 | static void printlim(unsigned opts, const struct rlimit *limit, | 340 | static void printlim(unsigned opts, const struct rlimit *limit, |
334 | const struct limits *l) | 341 | const struct limits *l) |
335 | { | 342 | { |
@@ -453,3 +460,4 @@ shell_builtin_ulimit(char **argv) | |||
453 | 460 | ||
454 | return 0; | 461 | return 0; |
455 | } | 462 | } |
463 | #endif | ||