diff options
author | Rob Landley <rob@landley.net> | 2020-04-02 21:32:30 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-04-02 21:32:30 -0500 |
commit | f79dc0cfb2ea534876c776684ec1f1a0a53078c6 (patch) | |
tree | d9e849b0d40132782503ecdc0ec37a2b72add70c /lib | |
parent | 5332688a2a6ef72df2b7514962e27e66534a3e48 (diff) | |
download | toybox-f79dc0cfb2ea534876c776684ec1f1a0a53078c6.tar.gz |
Move #include <linux/*.h> into individual commands, initialize struct
with memset() instead of = {}, and move TT.alarm to local variable.
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 41128958..acc32fd4 100644 --- a/lib/portability.h +++ b/lib/portability.h @@ -175,7 +175,6 @@ void *memmem(const void *haystack, size_t haystack_length, // Linux headers not listed by POSIX or LSB #include <sys/mount.h> #ifdef __linux__ -#include <linux/rtc.h> #include <sys/statfs.h> #include <sys/swap.h> #include <sys/sysinfo.h> |