/* Copyright 2012 The MathWorks, Inc. */ #ifndef _STDBOOL_H #define _STDBOOL_H #ifndef _BOOL # define bool int # define true 1 # define false 0 #endif #endif /* _STDBOOL_H */