Use offsetof() from sys/types.h instead of a custom one
This fixes build with recent gcc versions
This commit is contained in:
parent
2e7634503e
commit
92a1d420ba
@ -110,7 +110,7 @@ struct direct {
|
||||
*
|
||||
*/
|
||||
#define DIRECTSIZ(namlen) \
|
||||
(((uintptr_t)&((struct direct *)0)->d_name + \
|
||||
((offsetof(struct direct, d_name) + \
|
||||
((namlen)+1)*sizeof(((struct direct *)0)->d_name[0]) + 3) & ~3)
|
||||
#if (BYTE_ORDER == LITTLE_ENDIAN)
|
||||
#define DIRSIZ(oldfmt, dp) \
|
||||
|
Loading…
Reference in New Issue
Block a user