From ce96f7bd3ec832083d9a6460c707e2ab2669cbef Mon Sep 17 00:00:00 2001 From: Nguyễn Thái Ngọc Duy Date: Tue, 13 Apr 2010 22:05:54 +0200 Subject: win32: shell/builtin_ulimit.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nguyễn Thái Ngọc Duy --- shell/builtin_ulimit.c | 9 +++++++++ 1 file changed, 9 insertions(+) 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 @@ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ #include "libbb.h" + +#if ENABLE_PLATFORM_MINGW32 +int FAST_FUNC shell_builtin_ulimit(char **argv) +{ + return 1; +} +#else + #include "builtin_ulimit.h" @@ -226,3 +234,4 @@ int FAST_FUNC shell_builtin_ulimit(char **argv) return 0; } +#endif -- cgit v1.2.3-55-g6feb