All checks were successful
Build documentation / build-and-deploy (push) Successful in 27s
7 lines
171 B
C
7 lines
171 B
C
#ifndef _KERNEL_LIBK_FIELDSIZEOF_H
|
|
#define _KERNEL_LIBK_FIELDSIZEOF_H
|
|
|
|
#define fieldsizeof(type, field) (sizeof (((type*)0)->field))
|
|
|
|
#endif // _KERNEL_LIBK_FIELDSIZEOF_H
|