digitalmars.D.learn - importC error: alignment value expected, not `sizeof`
- Dakota (7/7) Aug 07 2024 ```c
```c
typedef struct test_s
{
unsigned char _[64] __attribute__ ((aligned (sizeof (void
*))));
} test_t;
```
Aug 07 2024
```c
typedef struct test_s
{
unsigned char _[64] __attribute__ ((aligned (sizeof (void
*))));
} test_t;
```