10 lines
237 B
C
10 lines
237 B
C
#ifndef MISC_UTILS_H
|
|
#define MISC_UTILS_H
|
|
|
|
#include "aliases.h"
|
|
|
|
#define wapp_misc_utils_padding_size(SIZE) \
|
|
u8 reserved_padding[sizeof(void *) - ((SIZE) % sizeof(void *))]
|
|
|
|
#endif // !MISC_UTILS_H
|