Files
zig/src
Andrew Kelley f33b3fc3ea zig.h: add casts for overflow arithmetic operations
This avoids the following error:

```
error: incompatible pointer types passing 'int64_t *' (aka 'long long *') to parameter of type 'long *'
    overflow = __builtin_saddl_overflow(lhs, rhs, res);
                                                  ^~~
```

My previous understanding was that this error would not occur because
prior to this line we check that int64_t is equivalent to long, like
this:

```c
```

However, it appears that this is still a warning in C if int64_t is
primarily aliased to `long long`, even though `long` and `long long` are
the same thing.
2022-05-16 14:30:28 -07:00
..
2022-05-13 16:43:59 -04:00
2022-04-27 16:45:23 -07:00
2022-05-13 16:43:59 -04:00
2022-05-13 16:43:59 -04:00
2022-05-09 18:51:46 +02:00
2022-04-27 16:45:23 -07:00
2022-05-15 18:21:50 +02:00
2022-05-04 01:00:57 +02:00
2022-05-13 16:43:59 -04:00
2022-01-07 00:06:06 -05:00
2022-04-28 17:48:05 +03:00
2021-09-24 13:39:20 -04:00