diff options
-rw-r--r-- | shell/builtin_ulimit.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/builtin_ulimit.c b/shell/builtin_ulimit.c index 9f9205eb6..7ef17b1b0 100644 --- a/shell/builtin_ulimit.c +++ b/shell/builtin_ulimit.c | |||
@@ -16,6 +16,14 @@ | |||
16 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 16 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
17 | */ | 17 | */ |
18 | #include "libbb.h" | 18 | #include "libbb.h" |
19 | |||
20 | #if ENABLE_PLATFORM_MINGW32 | ||
21 | int FAST_FUNC shell_builtin_ulimit(char **argv) | ||
22 | { | ||
23 | return 1; | ||
24 | } | ||
25 | #else | ||
26 | |||
19 | #include "builtin_ulimit.h" | 27 | #include "builtin_ulimit.h" |
20 | 28 | ||
21 | 29 | ||
@@ -226,3 +234,4 @@ int FAST_FUNC shell_builtin_ulimit(char **argv) | |||
226 | 234 | ||
227 | return 0; | 235 | return 0; |
228 | } | 236 | } |
237 | #endif | ||