diff options
Diffstat (limited to 'libbb/xfuncs_printf.c')
-rw-r--r-- | libbb/xfuncs_printf.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libbb/xfuncs_printf.c b/libbb/xfuncs_printf.c index aea995a5c..99596b9d0 100644 --- a/libbb/xfuncs_printf.c +++ b/libbb/xfuncs_printf.c | |||
@@ -720,3 +720,14 @@ void FAST_FUNC xsettimeofday(const struct timeval *tv) | |||
720 | if (settimeofday(tv, NULL)) | 720 | if (settimeofday(tv, NULL)) |
721 | bb_simple_perror_msg_and_die("settimeofday"); | 721 | bb_simple_perror_msg_and_die("settimeofday"); |
722 | } | 722 | } |
723 | |||
724 | void FAST_FUNC xgettimeofday(struct timeval *tv) | ||
725 | { | ||
726 | #if 0 | ||
727 | if (gettimeofday(tv, NULL)) | ||
728 | bb_simple_perror_msg_and_die("gettimeofday"); | ||
729 | #else | ||
730 | /* Never fails on Linux */ | ||
731 | gettimeofday(tv, NULL); | ||
732 | #endif | ||
733 | } | ||