dev-lua/tekui: install .so files to correct location
[sgilles-overlay.git] / sys-apps / mosys / files / mosys-musl.patch
blob5453bb8d3b21dca1c1ffb22cd0effef3363ee258
1 diff --git a/lib/eeprom/ethtool-util.h b/lib/eeprom/ethtool-util.h
2 index 3fe47e3..e7b4cd0 100644
3 --- a/lib/eeprom/ethtool-util.h
4 +++ b/lib/eeprom/ethtool-util.h
5 @@ -26,15 +26,15 @@
7 /* hack, so we may include kernel's ethtool.h */
8 typedef unsigned long long __u64;
9 -typedef __uint32_t __u32; /* ditto */
10 -typedef __uint16_t __u16; /* ditto */
11 -typedef __uint8_t __u8; /* ditto */
12 +typedef uint32_t __u32; /* ditto */
13 +typedef uint16_t __u16; /* ditto */
14 +typedef uint8_t __u8; /* ditto */
16 /* historical: we used to use kernel-like types; remove these once cleaned */
17 typedef unsigned long long u64;
18 -typedef __uint32_t u32; /* ditto */
19 -typedef __uint16_t u16; /* ditto */
20 -typedef __uint8_t u8; /* ditto */
21 +typedef uint32_t u32; /* ditto */
22 +typedef uint16_t u16; /* ditto */
23 +typedef uint8_t u8; /* ditto */
25 #include <net/if.h>