aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-13 22:05:54 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:30 +0200
commitce96f7bd3ec832083d9a6460c707e2ab2669cbef (patch)
treee74d2a0d197ee9088e7db8a55b494c0e8975066c
parentedd79bb9d705c957c10adf9c9443d5681d7ba29d (diff)
downloadbusybox-w32-ce96f7bd3ec832083d9a6460c707e2ab2669cbef.tar.gz
busybox-w32-ce96f7bd3ec832083d9a6460c707e2ab2669cbef.tar.bz2
busybox-w32-ce96f7bd3ec832083d9a6460c707e2ab2669cbef.zip
win32: shell/builtin_ulimit.c
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
-rw-r--r--shell/builtin_ulimit.c9
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
21int 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