Zig version
0.16.0-dev.1484+d0ba6642b
Reproduction and Observed Behavior
This is basically #92 but the workaround mentioned here doesn't work anymore.
- Create
repro.c
#include <windows.h>#define MIDL_INTERFACE struct
- Run
zig translate-c -target x86_64-windows-msvc repro.c -lc
The command fails with exit code 5.
error: the following build command failed with exit code 5: [...]
Expected Behavior
The command should succeed.
## Zig version
0.16.0-dev.1484+d0ba6642b
## Reproduction and Observed Behavior
This is basically #92 but the workaround mentioned [here](https://codeberg.org/ziglang/translate-c/issues/92#issuecomment-8511720) doesn't work anymore.
1. Create `repro.c`
```c
#include <windows.h>
#define MIDL_INTERFACE struct
```
2. Run
```shell
zig translate-c -target x86_64-windows-msvc repro.c -lc
```
The command fails with exit code 5.
```
error: the following build command failed with exit code 5: [...]
```
## Expected Behavior
The command should succeed.