diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-13 22:05:54 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 19:49:33 +1000 |
commit | e96864c202d5c996b2a22b3e49f1111f42c37602 (patch) | |
tree | a685f5a2798280d80b4739b249743c00c9789793 | |
parent | 6895e28a7f0451601831371f64cc3cc582d5cc1c (diff) | |
download | busybox-w32-e96864c202d5c996b2a22b3e49f1111f42c37602.tar.gz busybox-w32-e96864c202d5c996b2a22b3e49f1111f42c37602.tar.bz2 busybox-w32-e96864c202d5c996b2a22b3e49f1111f42c37602.zip |
win32: shell/builtin_ulimit.c
-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 | ||