diff options
author | Rob Landley <rob@landley.net> | 2019-10-23 01:25:22 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-10-23 01:25:22 -0500 |
commit | 69efea9cc568b3906340ddf45df66db811d4f204 (patch) | |
tree | 09c739f9426ac3a5e57e392eddd54b28c20e014e /lib | |
parent | 9eb72d920925b6b3ad0036ee2af790f0107f10c9 (diff) | |
download | toybox-69efea9cc568b3906340ddf45df66db811d4f204.tar.gz |
Use adjtimex instead of adjtime (bionic hasn't got adjtime).
And check in more multicast support that's been sitting in the tree, I don't
have a test enviornment for it anymore but somebody wanted this...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/portability.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/portability.h b/lib/portability.h index c2af278b..fb4e0383 100644 --- a/lib/portability.h +++ b/lib/portability.h @@ -297,7 +297,6 @@ static inline char *get_sched_policy_name(int policy) {return "unknown";} // stub it out for now. #ifdef __ANDROID_NDK__ #define __android_log_write(a, b, c) (0) -#define adjtime(x, y) (0) #endif #ifndef SYSLOG_NAMES |