On Mon, May 18, 2020 at 11:16:13AM +0200, Dominik Brodowski wrote:
> >
> > Signed-off-by: Gustavo A. R. Silva
>
> Applied to pcmcia-next.
>
Thanks, Dominik.
--
Gustavo
On Thu, May 07, 2020 at 02:05:49PM -0500, Gustavo A. R. Silva wrote:
> The current codebase makes use of the zero-length array language
> extension to the C90 standard, but the preferred mechanism to declare
> variable-length types such as these ones is a flexible array member[1][2],
> introduced i
The current codebase makes use of the zero-length array language
extension to the C90 standard, but the preferred mechanism to declare
variable-length types such as these ones is a flexible array member[1][2],
introduced in C99:
struct foo {
int stuff;
struct boo array[];
};
By ma
3 matches
Mail list logo