diff options
author | Ron Yorston <rmy@pobox.com> | 2020-01-08 14:01:18 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2020-01-08 14:01:18 +0000 |
commit | cf0fa4d1392b7dc7eb8d37206c111f76af67e0e9 (patch) | |
tree | b3b8b2d8b9b501b2a8847bae76e97a5f30a4f464 /win32/mingw.c | |
parent | a9271a8e97e6e7be5285330d5f19352decabf807 (diff) | |
download | busybox-w32-FRP-3329-gcf0fa4d13.tar.gz busybox-w32-FRP-3329-gcf0fa4d13.tar.bz2 busybox-w32-FRP-3329-gcf0fa4d13.zip |
Build fixesFRP-3329-gcf0fa4d13
- Update configuration files
- Omit unnecessary libraries
- Replace fake stime(2) with fake clock_settime(2)
Diffstat (limited to 'win32/mingw.c')
-rw-r--r-- | win32/mingw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/mingw.c b/win32/mingw.c index 7e4d6a318..38fbf2d4b 100644 --- a/win32/mingw.c +++ b/win32/mingw.c | |||
@@ -1392,7 +1392,7 @@ size_t mingw_strftime(char *buf, size_t max, const char *format, const struct tm | |||
1392 | return ret; | 1392 | return ret; |
1393 | } | 1393 | } |
1394 | 1394 | ||
1395 | int stime(time_t *t UNUSED_PARAM) | 1395 | int clock_settime(clockid_t clk_id UNUSED_PARAM, const struct timespec *tp UNUSED_PARAM) |
1396 | { | 1396 | { |
1397 | errno = EPERM; | 1397 | errno = EPERM; |
1398 | return -1; | 1398 | return -1; |