comparison main.c @ 183:4c3375895c6e

Don't use <stdbool.h> unless __STDC__ is large enough. Works around Solaris's broken environment.
author David A. Holland
date Fri, 12 Jun 2015 03:28:19 -0400
parents f7814226906c
children 16b4451e34b8
comparison
equal deleted inserted replaced
182:f7814226906c 183:4c3375895c6e
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE. 27 * POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 #include <stdbool.h>
31 #include <stdio.h> 30 #include <stdio.h>
32 #include <stdarg.h> 31 #include <stdarg.h>
33 #include <stdlib.h> 32 #include <stdlib.h>
34 #include <string.h> 33 #include <string.h>
35 #include <errno.h> 34 #include <errno.h>
36 35
36 #include "bool.h"
37 #include "version.h" 37 #include "version.h"
38 #include "config.h" 38 #include "config.h"
39 #include "utils.h" 39 #include "utils.h"
40 #include "array.h" 40 #include "array.h"
41 #include "mode.h" 41 #include "mode.h"