aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-01-30 21:03:07 +0000
committerRon Yorston <rmy@pobox.com>2014-01-30 21:03:07 +0000
commit0a2a7b55a9212d8fc708fd564407e5505b5e8363 (patch)
tree1db3e0b2a8df9f5e80648519aa9d75531333696c /shell
parent91229e15fe0cbc76eeae6f389879a42bff443f70 (diff)
downloadbusybox-w32-0a2a7b55a9212d8fc708fd564407e5505b5e8363.tar.gz
busybox-w32-0a2a7b55a9212d8fc708fd564407e5505b5e8363.tar.bz2
busybox-w32-0a2a7b55a9212d8fc708fd564407e5505b5e8363.zip
mingw: dummy implementation of times/sysconf
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 40660dad5..3d9af3891 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -13278,8 +13278,6 @@ unsetcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
13278 return ret & 1; 13278 return ret & 1;
13279} 13279}
13280 13280
13281#if !ENABLE_PLATFORM_MINGW32
13282
13283static const unsigned char timescmd_str[] ALIGN1 = { 13281static const unsigned char timescmd_str[] ALIGN1 = {
13284 ' ', offsetof(struct tms, tms_utime), 13282 ' ', offsetof(struct tms, tms_utime),
13285 '\n', offsetof(struct tms, tms_stime), 13283 '\n', offsetof(struct tms, tms_stime),
@@ -13311,13 +13309,6 @@ timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
13311 13309
13312 return 0; 13310 return 0;
13313} 13311}
13314#else
13315static int FAST_FUNC
13316timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
13317{
13318 return 0;
13319}
13320#endif
13321 13312
13322#if ENABLE_SH_MATH_SUPPORT 13313#if ENABLE_SH_MATH_SUPPORT
13323/* 13314/*