Re: [PATCH] Only typedef Ebl once.

2020-07-23 Thread Mark Wielaard
On Sun, 2020-07-19 at 22:03 +0200, Mark Wielaard wrote: > Since commit 287a18452 libasm.h defines an opague Ebl handle. > This is fine, except for (internal) code that also includes libebl.h. > Since C11 having multiple typedefs for the same thing is fine, but we > do build using GNU/C99. This also

[PATCH] Only typedef Ebl once.

2020-07-19 Thread Mark Wielaard
Since commit 287a18452 libasm.h defines an opague Ebl handle. This is fine, except for (internal) code that also includes libebl.h. Since C11 having multiple typedefs for the same thing is fine, but we do build using GNU/C99. This also allows multiple same typedefs, except for (very) old GCCs. Thi