On Wed, 28 Aug 2019 14:51:49 +0800 Bing Zhao <bingz at mellanox.com> wrote: > +#ifndef FALSE > +#define FALSE 0 > +#endif > +#ifndef TRUE > +#define TRUE 1 > +#endif Please use stdbool rather than reinventing boolean type.