# HG changeset patch # User John W. Eaton # Date 1441398418 14400 # Node ID 54eec9c180cb8927785602d6edb5fa0deefca1da # Parent fb6fe9b45c41b420e8b8b02b6c9965430e5808ff * mex.h: Don't typdef bool if it is already defined. diff -r fb6fe9b45c41 -r 54eec9c180cb libinterp/corefcn/mex.h --- a/libinterp/corefcn/mex.h Fri Sep 04 13:12:57 2015 -0700 +++ b/libinterp/corefcn/mex.h Fri Sep 04 16:26:58 2015 -0400 @@ -52,7 +52,7 @@ typedef void mxArray; -#if ! defined (__cplusplus) +#if ! defined (__cplusplus) && ! defined (bool) typedef int bool; #endif