aboutsummaryrefslogtreecommitdiff
path: root/shell/shell_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/shell_common.c')
-rw-r--r--shell/shell_common.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/shell_common.c b/shell/shell_common.c
index dc363e298..957d71928 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
334int FAST_FUNC
335shell_builtin_ulimit(char **argv)
336{
337 return 1;
338}
339#else
333static void printlim(unsigned opts, const struct rlimit *limit, 340static void printlim(unsigned opts, const struct rlimit *limit,
334 const struct limits *l) 341 const struct limits *l)
335{ 342{
@@ -458,3 +465,4 @@ shell_builtin_ulimit(char **argv)
458 465
459 return 0; 466 return 0;
460} 467}
468#endif