3 type: char, int, long, long long
13 size_t memalignment(const void *p
); // TODO: Rely on stdlib.h instead once the preprocessor can handle the option for C2X.
21 ASSERT(memalignment(0) == 0);
22 ASSERT(memalignment(&c
) > 0);
23 ASSERT(memalignment(&c
) >= _Alignof({type
}));