Christophe Coustet

Results 2 issues of Christophe Coustet

Should build using a c99 compiler. Tested on gcc 7 and MSVC 2017.

// this produces Error: syntax error, unexpected 'unsigned'. unsigned int \* ptr = new unsigned int; // Ok using this workaround: typedef unsigned int uint; unsigned int \* ptr =...