Change producer_is_gcc function return type to bool.
[deliverable/binutils-gdb.git] / gdb / utils.h
index 6724d7ce8da40df66da4ca17c82f740b6d549cd3..d8afa794813aa4d9e46abf221e4755665d7336e5 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef UTILS_H
 #define UTILS_H
 
+#include <stdbool.h>
+
 #include "exceptions.h"
 
 extern void initialize_utils (void);
@@ -302,7 +304,7 @@ extern pid_t wait_to_die_with_timeout (pid_t pid, int *status, int timeout);
 #endif
 
 extern int producer_is_gcc_ge_4 (const char *producer);
-extern int producer_is_gcc (const char *producer, int *minor);
+extern bool producer_is_gcc (const char *producer, int *major, int *minor);
 
 extern int myread (int, char *, int);
 
This page took 0.035922 seconds and 4 git commands to generate.